Searched refs:timeJSON (Results 1 – 1 of 1) sorted by relevance
103 cJSON *timeJSON = parser.GetObjectItem(patternListItemJSON, "AbsoluteTime"); in ParsePatternList() local104 CHKPR(timeJSON, ERROR); in ParsePatternList()105 int32_t time = cJSON_IsNumber(timeJSON) ? timeJSON->valueint : -1; in ParsePatternList()176 cJSON *timeJSON = parser.GetObjectItem(eventJSON, "RelativeTime"); in ParseEvent() local177 CHKPR(timeJSON, ERROR); in ParseEvent()178 event.time = cJSON_IsNumber(timeJSON) ? timeJSON->valueint : -1; in ParseEvent()219 cJSON *timeJSON = parser.GetObjectItem(itemJSON, "Time"); in ParseCurve() local220 CHKPR(timeJSON, ERROR); in ParseCurve()221 point.time = cJSON_IsNumber(timeJSON) ? timeJSON->valueint : -1; in ParseCurve()