Lines Matching refs:json_top
2053 cJSON_AddItemReferenceToObject(j, "server_output_json", test->json_top); in send_results()
4181 test->json_top = cJSON_CreateObject(); in iperf_json_start()
4182 if (test->json_top == NULL) in iperf_json_start()
4187 cJSON_AddItemToObject(test->json_top, "start", test->json_start); in iperf_json_start()
4195 cJSON_AddItemToObject(test->json_top, "intervals", test->json_intervals); in iperf_json_start()
4199 cJSON_AddItemToObject(test->json_top, "end", test->json_end); in iperf_json_start()
4207 cJSON_AddStringToObject(test->json_top, "title", test->title); in iperf_json_finish()
4209 cJSON_AddStringToObject(test->json_top, "extra_data", test->extra_data); in iperf_json_finish()
4212 cJSON_AddItemToObject(test->json_top, "server_output_json", test->json_server_output); in iperf_json_finish()
4215 cJSON_AddStringToObject(test->json_top, "server_output_text", test->server_output_text); in iperf_json_finish()
4217 test->json_output_string = cJSON_Print(test->json_top); in iperf_json_finish()
4224 cJSON_Delete(test->json_top); in iperf_json_finish()
4225 …test->json_top = test->json_start = test->json_connected = test->json_intervals = test->json_serve… in iperf_json_finish()