Home
last modified time | relevance | path

Searched refs:cJSON_Print (Results 1 – 13 of 13) sorted by relevance

/third_party/cJSON/tests/
Dreadme_examples.c106 string = cJSON_Print(monitor); in create_monitor()
158 string = cJSON_Print(monitor); in create_monitor_with_helpers()
Dparse_examples.c80 actual = cJSON_Print(tree); in do_test()
Djson_patch_tests.c159 printed_patch = cJSON_Print(patch); in test_generate_test()
Dmisc_tests.c360 TEST_ASSERT_NULL(cJSON_Print(NULL)); in cjson_functions_should_not_crash_with_null_pointers()
/third_party/cJSON/fuzzing/
Dcjson_read_fuzzer.c47 printed_json = cJSON_Print(json); in LLVMFuzzerTestOneInput()
Dafl.c140 printed_json = cJSON_Print(item); in main()
/third_party/vulkan-loader/loader/
DcJSON.h72 char *cJSON_Print(cJSON *item);
Dloader.c1929 temp = cJSON_Print(item); \ in loader_read_layer_json()
1993 temp = cJSON_Print(expiration); in loader_read_layer_json()
2056 temp = cJSON_Print(library_path); in loader_read_layer_json()
2103 temp = cJSON_Print(comp_layer); in loader_read_layer_json()
2154 temp = cJSON_Print(black_layer); in loader_read_layer_json()
2189 temp = cJSON_Print(override_path); in loader_read_layer_json()
2253 temp = cJSON_Print(item); \ in loader_read_layer_json()
2381 temp = cJSON_Print(ext_item); in loader_read_layer_json()
2425 char *inst_ext_name = cJSON_Print(inst_ext_json); in loader_read_layer_json()
2438 char *inst_layer_name = cJSON_Print(inst_layer_json); in loader_read_layer_json()
[all …]
DcJSON.c479 char *cJSON_Print(cJSON *item) { return print_value(item, 0, 1, 0); } in cJSON_Print() function
/third_party/cJSON/
Dtest.c53 out = cJSON_Print(root); in print_preallocated()
DREADME.md291 Given a tree of `cJSON` items, you can print them as a string using `cJSON_Print`.
294 char *string = cJSON_Print(json);
299 `cJSON_Print` will print with whitespace for formatting. If you want to print without formatting, u…
301 …off. `prebuffer` specifies the first buffer size to use for printing. `cJSON_Print` currently uses…
397 string = cJSON_Print(monitor);
454 string = cJSON_Print(monitor);
DcJSON.h156 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
DcJSON.c1248 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) in cJSON_Print() function