Searched refs:get_object_item (Results 1 - 2 of 2) sorted by relevance
/third_party/cJSON/ |
H A D | cJSON_Utils.c | 747 static cJSON *get_object_item(const cJSON * const object, const char* name, const cJSON_bool case_sensitive) in get_object_item() function 761 cJSON *operation = get_object_item(patch, "op", case_sensitive); in decode_patch_operation() 834 path = get_object_item(patch, "path", case_sensitive); in apply_patch() 851 status = !compare_json(get_item_from_pointer(object, path->valuestring, case_sensitive), get_object_item(patch, "value", case_sensitive), case_sensitive); in apply_patch() 870 value = get_object_item(patch, "value", case_sensitive); in apply_patch() 925 cJSON *from = get_object_item(patch, "from", case_sensitive); in apply_patch() 960 value = get_object_item(patch, "value", case_sensitive); in apply_patch()
|
H A D | cJSON.c | 2128 static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive) in get_object_item() function 2162 return get_object_item(object, string, false); in cJSON_GetObjectItem() 2167 return get_object_item(object, string, true); in cJSON_GetObjectItemCaseSensitive() 2638 return cJSON_ReplaceItemViaPointer(object, get_object_item(object, string, case_sensitive), replacement); in replace_item_in_object() 3420 b_element = get_object_item(b, a_element->string, case_sensitive); in CJSON_PUBLIC() 3436 a_element = get_object_item(a, b_element->string, case_sensitive); in CJSON_PUBLIC()
|
Completed in 6 milliseconds