Lines Matching refs:head
1144 cJSON *head = NULL; /* head of the linked list */ in parse_array() local
1177 if (head == NULL) { in parse_array()
1179 current_item = head = new_item; in parse_array()
1199 if (head != NULL) head->prev = current_item; in parse_array()
1202 item->child = head; in parse_array()
1209 if (head != NULL) cJSON_Delete(head); in parse_array()
1259 cJSON *head = NULL; /* linked list head */ in parse_object() local
1286 if (head == NULL) { in parse_object()
1288 current_item = head = new_item; in parse_object()
1320 if (head != NULL) head->prev = current_item; in parse_object()
1323 item->child = head; in parse_object()
1329 if (head != NULL) cJSON_Delete(head); in parse_object()