Home
last modified time | relevance | path

Searched refs:cJSON_InsertItemInArray (Results 1 – 6 of 6) sorted by relevance

/third_party/cJSON/tests/
Dmisc_tests.c427 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(array, 0, NULL)); in cjson_functions_should_not_crash_with_null_pointers()
428 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(array, 1, item)); in cjson_functions_should_not_crash_with_null_pointers()
429 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(NULL, 0, item)); in cjson_functions_should_not_crash_with_null_pointers()
430 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(item, 0, NULL)); in cjson_functions_should_not_crash_with_null_pointers()
/third_party/vulkan-loader/loader/
DcJSON.h133 void cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shifts pre-existing items…
DcJSON.c999 void cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) { in cJSON_InsertItemInArray() function
/third_party/cJSON/
DcJSON.h242 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shift…
DREADME.md249 To insert items in the middle, use `cJSON_InsertItemInArray`. It will insert an item at the given 0…
DcJSON.c2268 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) in cJSON_InsertItemInArray() function