Lines Matching refs:json_top
2335 cJSON_AddItemReferenceToObject(j, "server_output_json", test->json_top); in send_results()
4596 test->json_top = cJSON_CreateObject(); in iperf_json_start()
4597 if (test->json_top == NULL) in iperf_json_start()
4602 cJSON_AddItemToObject(test->json_top, "start", test->json_start); in iperf_json_start()
4610 cJSON_AddItemToObject(test->json_top, "intervals", test->json_intervals); in iperf_json_start()
4614 cJSON_AddItemToObject(test->json_top, "end", test->json_end); in iperf_json_start()
4622 cJSON_AddStringToObject(test->json_top, "title", test->title); in iperf_json_finish()
4624 cJSON_AddStringToObject(test->json_top, "extra_data", test->extra_data); in iperf_json_finish()
4627 cJSON_AddItemToObject(test->json_top, "server_output_json", test->json_server_output); in iperf_json_finish()
4630 cJSON_AddStringToObject(test->json_top, "server_output_text", test->server_output_text); in iperf_json_finish()
4635 char *str = cJSON_Print(test->json_top); in iperf_json_finish()
4644 cJSON_Delete(test->json_top); in iperf_json_finish()
4645 …test->json_top = test->json_start = test->json_connected = test->json_intervals = test->json_serve… in iperf_json_finish()