Home
last modified time | relevance | path

Searched refs:cJSON_ReplaceItemInObject (Results 1 – 4 of 4) sorted by relevance

/third_party/cJSON/tests/
Dmisc_tests.c344 cJSON_ReplaceItemInObject(root, "child", replacement); in cjson_replace_item_in_object_should_preserve_name()
422 TEST_ASSERT_FALSE(cJSON_ReplaceItemInObject(NULL, "item", item)); in cjson_functions_should_not_crash_with_null_pointers()
423 TEST_ASSERT_FALSE(cJSON_ReplaceItemInObject(item, NULL, item)); in cjson_functions_should_not_crash_with_null_pointers()
424 TEST_ASSERT_FALSE(cJSON_ReplaceItemInObject(item, "item", NULL)); in cjson_functions_should_not_crash_with_null_pointers()
/third_party/cJSON/
DcJSON.h245 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
DCHANGELOG.md206 * Fix `cJSON_ReplaceItemInObject` not keeping the name of an item, see [#174](https://github.com/Da…
DcJSON.c2365 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newite… in cJSON_ReplaceItemInObject() function