Lines Matching defs:output
8 * Sample output:
371 fprintf(stat_config.output,
1120 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1121 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1123 "log output to fd, instead of stderr"),
1711 fprintf(stat_config.output,
2009 stat_config.output = stderr;
2059 FILE *output = stderr;
2103 output = NULL;
2106 fprintf(stderr, "cannot use both --output and --log-fd\n");
2135 if (!output) {
2139 output = fopen(output_name, mode);
2140 if (!output) {
2141 perror("failed to create output file");
2145 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
2148 output = fdopen(output_fd, mode);
2149 if (!output) {
2155 stat_config.output = output;
2264 * so we could print it out on output.
2342 fprintf(output, "[ perf stat: executing run #%d ... ]\n",