Lines Matching refs:outfile
236 return ipt->outfile; in iperf_get_test_outfile()
1750 test->outfile = fopen(test->logfile, "a+"); in iperf_open_logfile()
1751 if (test->outfile == NULL) { in iperf_open_logfile()
2720 test->outfile = stdout; in iperf_new_test()
2957 if (test->outfile && test->outfile != stdout) { in iperf_free_test()
2958 fclose(test->outfile); in iperf_free_test()
2959 test->outfile = NULL; in iperf_free_test()
4642 fprintf(test->outfile, "%s\n", test->json_output_string); in iperf_json_finish()
4771 r0 = fprintf(test->outfile, "%s", ct); in iperf_printf()
4777 r0 = fprintf(test->outfile, "%s: ", test->title); in iperf_printf()
4783 r0 = vfprintf(test->outfile, format, argp); in iperf_printf()
4805 fprintf(test->outfile, "%s", linebuffer); in iperf_printf()
4819 return fflush(test->outfile); in iflush()