Lines Matching refs:output

1231 	FILE			*output;  member
1404 color_fprintf(trace->output, PERF_COLOR_RED, in trace__process_event()
1633 fprintf(trace->output, "Invalid syscall %d id, skipping (%s, %" PRIu64 ") ...\n", in trace__syscall_info()
1650 fprintf(trace->output, "Problems reading syscall %d", id); in trace__syscall_info()
1652 fprintf(trace->output, "(%s)", trace->syscalls.table[id].name); in trace__syscall_info()
1653 fputs(" information\n", trace->output); in trace__syscall_info()
1700 printed = trace__fprintf_entry_head(trace, trace->current, duration, sample->time, trace->output); in trace__printf_interrupted_entry()
1701 printed += fprintf(trace->output, "%-70s) ...\n", ttrace->entry_str); in trace__printf_interrupted_entry()
1726 ttrace = thread__trace(thread, trace->output); in trace__sys_enter()
1750 trace__fprintf_entry_head(trace, thread, 1, sample->time, trace->output); in trace__sys_enter()
1751 fprintf(trace->output, "%-70s\n", ttrace->entry_str); in trace__sys_enter()
1782 ttrace = thread__trace(thread, trace->output); in trace__sys_exit()
1809 trace__fprintf_entry_head(trace, thread, duration, sample->time, trace->output); in trace__sys_exit()
1812 fprintf(trace->output, "%-70s", ttrace->entry_str); in trace__sys_exit()
1814 fprintf(trace->output, " ... ["); in trace__sys_exit()
1815 color_fprintf(trace->output, PERF_COLOR_YELLOW, "continued"); in trace__sys_exit()
1816 fprintf(trace->output, "]: %s()", sc->name); in trace__sys_exit()
1821 fprintf(trace->output, ") = %ld", ret); in trace__sys_exit()
1827 fprintf(trace->output, ") = -1 %s %s", e, emsg); in trace__sys_exit()
1829 fprintf(trace->output, ") = 0 Timeout"); in trace__sys_exit()
1831 fprintf(trace->output, ") = %#lx", ret); in trace__sys_exit()
1835 fputc('\n', trace->output); in trace__sys_exit()
1859 struct thread_trace *ttrace = thread__trace(thread, trace->output); in trace__sched_stat_runtime()
1869 fprintf(trace->output, "%s: comm=%s,pid=%u,runtime=%" PRIu64 ",vruntime=%" PRIu64 ")\n", in trace__sched_stat_runtime()
1883 trace__fprintf_tstamp(trace, sample->time, trace->output); in trace__event_handler()
1886 fprintf(trace->output, "( ): "); in trace__event_handler()
1888 fprintf(trace->output, "%s:", evsel->name); in trace__event_handler()
1893 trace->output); in trace__event_handler()
1896 fprintf(trace->output, ")\n"); in trace__event_handler()
1929 ttrace = thread__trace(thread, trace->output); in trace__pgfault()
1944 trace__fprintf_entry_head(trace, thread, 0, sample->time, trace->output); in trace__pgfault()
1946 fprintf(trace->output, "%sfault [", in trace__pgfault()
1950 print_location(trace->output, sample, &al, false, true); in trace__pgfault()
1952 fprintf(trace->output, "] => "); in trace__pgfault()
1967 print_location(trace->output, sample, &al, true, false); in trace__pgfault()
1969 fprintf(trace->output, " (%c%c)\n", map_type, al.level); in trace__pgfault()
2147 fprintf(trace->output, "Unknown tp ID %" PRIu64 ", skipping...\n", sample->id); in trace__handle_event()
2153 …fprintf(trace->output, "%s sample with no payload for tid: %d, cpu %d, raw_size=%d, skipping...\n", in trace__handle_event()
2196 fprintf(trace->output, "Problems parsing the target to trace, check your options!\n"); in trace__run()
2202 fprintf(trace->output, "Problems initializing symbol libraries!\n"); in trace__run()
2215 fprintf(trace->output, "Couldn't run the workload!\n"); in trace__run()
2266 fprintf(trace->output, "Can't parse sample, err = %d, skipping...\n", err); in trace__run()
2304 trace__fprintf_thread_summary(trace, trace->output); in trace__run()
2307 fprintf(trace->output, "Stats:\n " in trace__run()
2339 fprintf(trace->output, "%s\n", errbuf); in trace__run()
2343 fprintf(trace->output, "Not enough memory to run!\n"); in trace__run()
2435 trace__fprintf_thread_summary(trace, trace->output); in trace__replay()
2599 trace->output = fopen(filename, "w"); in trace__open_output()
2601 return trace->output == NULL ? -errno : 0; in trace__open_output()
2656 .output = stdout, in cmd_trace()
2764 trace.output); in cmd_trace()
2773 fprintf(trace.output, "%s", bf); in cmd_trace()
2780 fprintf(trace.output, "%s", bf); in cmd_trace()
2794 fclose(trace.output); in cmd_trace()