MCPcopy Index your code
hub / github.com/esnet/iperf / cJSON_CreateArray

Function cJSON_CreateArray

src/cjson.c:2533–2542  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2531}
2532
2533CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void)
2534{
2535 cJSON *item = cJSON_New_Item(&global_hooks);
2536 if(item)
2537 {
2538 item->type=cJSON_Array;
2539 }
2540
2541 return item;
2542}
2543
2544CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)
2545{

Callers 9

cJSON_AddArrayToObjectFunction · 0.85
cJSON_CreateIntArrayFunction · 0.85
cJSON_CreateFloatArrayFunction · 0.85
cJSON_CreateDoubleArrayFunction · 0.85
cJSON_CreateStringArrayFunction · 0.85
send_resultsFunction · 0.85
iperf_print_intermediateFunction · 0.85
iperf_print_resultsFunction · 0.85
iperf_json_startFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…