Searched refs:cJSON_IsReference (Results 1 – 2 of 2) sorted by relevance
222 if (!(item->type & cJSON_IsReference) && (item->child != NULL)) cJSON_Delete(item->child); in cJSON_Delete()223 …if (!(item->type & cJSON_IsReference) && (item->valuestring != NULL)) global_hooks.deallocate(item… in cJSON_Delete()339 if (!(object->type & cJSON_String) || (object->type & cJSON_IsReference)) return NULL; in cJSON_SetValuestring()1496 reference->type |= cJSON_IsReference; in create_reference()1895 item->type = cJSON_String | cJSON_IsReference; in cJSON_CreateStringReference()1906 item->type = cJSON_Object | cJSON_IsReference; in cJSON_CreateObjectReference()1917 item->type = cJSON_Array | cJSON_IsReference; in cJSON_CreateArrayReference()2090 newitem->type = item->type & (~cJSON_IsReference); in cJSON_Duplicate()
97 #define cJSON_IsReference 256 macro