Lines Matching refs:cJSON_Delete
217 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete() function
222 if (!(item->type & cJSON_IsReference) && (item->child != NULL)) cJSON_Delete(item->child); in cJSON_Delete()
917 if (item != NULL) cJSON_Delete(item); in cJSON_ParseWithLengthOpts()
1209 if (head != NULL) cJSON_Delete(head); in parse_array()
1329 if (head != NULL) cJSON_Delete(head); in parse_object()
1603 cJSON_Delete(null); in cJSON_AddNullToObject()
1612 cJSON_Delete(true_item); in cJSON_AddTrueToObject()
1621 cJSON_Delete(false_item); in cJSON_AddFalseToObject()
1630 cJSON_Delete(bool_item); in cJSON_AddBoolToObject()
1639 cJSON_Delete(number_item); in cJSON_AddNumberToObject()
1648 cJSON_Delete(string_item); in cJSON_AddStringToObject()
1657 cJSON_Delete(raw_item); in cJSON_AddRawToObject()
1666 cJSON_Delete(object_item); in cJSON_AddObjectToObject()
1675 cJSON_Delete(array); in cJSON_AddArrayToObject()
1716 cJSON_Delete(cJSON_DetachItemFromArray(array, which)); in cJSON_DeleteItemFromArray()
1735 cJSON_Delete(cJSON_DetachItemFromObject(object, string)); in cJSON_DeleteItemFromObject()
1740 cJSON_Delete(cJSON_DetachItemFromObjectCaseSensitive(object, string)); in cJSON_DeleteItemFromObjectCaseSensitive()
1787 cJSON_Delete(item); in cJSON_ReplaceItemViaPointer()
1883 cJSON_Delete(item); in cJSON_CreateString()
1931 cJSON_Delete(item); in cJSON_CreateRaw()
1970 cJSON_Delete(a); in cJSON_CreateIntArray()
2000 cJSON_Delete(a); in cJSON_CreateFloatArray()
2030 cJSON_Delete(a); in cJSON_CreateDoubleArray()
2060 cJSON_Delete(a); in cJSON_CreateStringArray()
2125 if (newitem != NULL) cJSON_Delete(newitem); in cJSON_Duplicate()