Home
last modified time | relevance | path

Searched refs:json_top (Results 1 – 3 of 3) sorted by relevance

/external/iperf3/src/
Diperf_error.c45 if (test != NULL && test->json_output && test->json_top != NULL) in iperf_err()
46 cJSON_AddStringToObject(test->json_top, "error", str); in iperf_err()
66 if (test != NULL && test->json_output && test->json_top != NULL) { in iperf_errexit()
67 cJSON_AddStringToObject(test->json_top, "error", str); in iperf_errexit()
Diperf_api.c1816 cJSON_AddItemReferenceToObject(j, "server_output_json", test->json_top); in send_results()
3867 test->json_top = cJSON_CreateObject(); in iperf_json_start()
3868 if (test->json_top == NULL) in iperf_json_start()
3873 cJSON_AddItemToObject(test->json_top, "start", test->json_start); in iperf_json_start()
3881 cJSON_AddItemToObject(test->json_top, "intervals", test->json_intervals); in iperf_json_start()
3885 cJSON_AddItemToObject(test->json_top, "end", test->json_end); in iperf_json_start()
3893 cJSON_AddStringToObject(test->json_top, "title", test->title); in iperf_json_finish()
3895 cJSON_AddStringToObject(test->json_top, "extra_data", test->extra_data); in iperf_json_finish()
3898 cJSON_AddItemToObject(test->json_top, "server_output_json", test->json_server_output); in iperf_json_finish()
3901 cJSON_AddStringToObject(test->json_top, "server_output_text", test->server_output_text); in iperf_json_finish()
[all …]
Diperf.h345 cJSON *json_top; member