Searched refs:cJSON_GetObjectItem (Results 1 – 5 of 5) sorted by relevance
/third_party/cJSON/tests/ |
D | old_utils_tests.c | 72 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/foo"), cJSON_GetObjectItem(root, "foo")); in json_pointer_tests() 73 …TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/foo/0"), cJSON_GetObjectItem(root, "foo")->chi… in json_pointer_tests() 74 …TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/foo/0"), cJSON_GetObjectItem(root, "foo")->chi… in json_pointer_tests() 75 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/"), cJSON_GetObjectItem(root, "")); in json_pointer_tests() 76 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/a~1b"), cJSON_GetObjectItem(root, "a/b")); in json_pointer_tests() 77 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/c%d"), cJSON_GetObjectItem(root, "c%d")); in json_pointer_tests() 78 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/c^f"), cJSON_GetObjectItem(root, "c^f")); in json_pointer_tests() 79 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/c|f"), cJSON_GetObjectItem(root, "c|f")); in json_pointer_tests() 80 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/i\\j"), cJSON_GetObjectItem(root, "i\\j")); in json_pointer_tests() 81 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/k\"l"), cJSON_GetObjectItem(root, "k\"l")); in json_pointer_tests() [all …]
|
D | misc_tests.c | 74 found = cJSON_GetObjectItem(NULL, "test"); in cjson_get_object_item_should_get_object_items() 77 found = cJSON_GetObjectItem(item, NULL); in cjson_get_object_item_should_get_object_items() 81 found = cJSON_GetObjectItem(item, "one"); in cjson_get_object_item_should_get_object_items() 85 found = cJSON_GetObjectItem(item, "tWo"); in cjson_get_object_item_should_get_object_items() 89 found = cJSON_GetObjectItem(item, "three"); in cjson_get_object_item_should_get_object_items() 93 found = cJSON_GetObjectItem(item, "four"); in cjson_get_object_item_should_get_object_items() 135 found = cJSON_GetObjectItem(array, "name"); in cjson_get_object_item_should_not_crash_with_array() 368 TEST_ASSERT_NULL(cJSON_GetObjectItem(NULL, "item")); in cjson_functions_should_not_crash_with_null_pointers() 369 TEST_ASSERT_NULL(cJSON_GetObjectItem(item, NULL)); in cjson_functions_should_not_crash_with_null_pointers() 634 return_value = cJSON_SetValuestring(cJSON_GetObjectItem(root, "one"), short_valuestring); in cjson_set_valuestring_to_object_should_not_leak_memory() [all …]
|
/third_party/cJSON/ |
D | cJSON.h | 172 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
|
D | cJSON.c | 1908 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) in cJSON_GetObjectItem() function 1920 return cJSON_GetObjectItem(object, string) ? 1 : 0; in cJSON_HasObjectItem() 2236 cJSON *to_detach = cJSON_GetObjectItem(object, string); in cJSON_DetachItemFromObject()
|
D | cJSON_Utils.c | 737 return cJSON_GetObjectItem(object, name); in get_object_item()
|