Home
last modified time | relevance | path

Searched refs:current_child (Results 1 – 2 of 2) sorted by relevance

/civetweb-2.7.6/examples/rest/cJSON/
DcJSON_Utils.c182 cJSON *current_child = 0; in cJSONUtils_FindPointerFromObjectTo() local
196 …for (current_child = object->child; current_child != NULL; (void)(current_child = current_child->n… in cJSONUtils_FindPointerFromObjectTo()
198 …d char *target_pointer = (unsigned char*)cJSONUtils_FindPointerFromObjectTo(current_child, target); in cJSONUtils_FindPointerFromObjectTo()
222 …strlen((char*)target_pointer) + pointer_encoded_length((unsigned char*)current_child->string) + 2); in cJSONUtils_FindPointerFromObjectTo()
224 encode_string_as_pointer(full_pointer + 1, (unsigned char*)current_child->string); in cJSONUtils_FindPointerFromObjectTo()
DcJSON.c1746 cJSON *current_child = NULL; in get_array_item() local
1753 current_child = array->child; in get_array_item()
1754 while ((current_child != NULL) && (index > 0)) in get_array_item()
1757 current_child = current_child->next; in get_array_item()
1760 return current_child; in get_array_item()