Searched refs:trace_file (Results 1 – 4 of 4) sorted by relevance
/tools/perf/tests/shell/ |
D | record+zstd_comp_decomp.sh | 6 trace_file=$(mktemp /tmp/perf.data.XXX) 16 $perf_tool record -o $trace_file $gflag -z -F 5000 -- \ 22 $perf_tool report -i $trace_file --header --stats | \ 27 $perf_tool inject -i $trace_file -o $trace_file.decomp && 28 $perf_tool report -i $trace_file --stdio -F comm,dso,sym | head -n -3 > $trace_file.comp.output && 29 …$perf_tool report -i $trace_file.decomp --stdio -F comm,dso,sym | head -n -3 > $trace_file.decomp.… 30 diff $trace_file.comp.output $trace_file.decomp.output 36 rm -f $trace_file*
|
/tools/perf/ |
D | builtin-ftrace.c | 570 char *trace_file; in __cmd_ftrace() local 618 trace_file = get_tracing_file("trace_pipe"); in __cmd_ftrace() 619 if (!trace_file) { in __cmd_ftrace() 624 trace_fd = open(trace_file, O_RDONLY); in __cmd_ftrace() 626 put_tracing_file(trace_file); in __cmd_ftrace()
|
/tools/perf/util/ |
D | probe-file.h | 40 int open_trace_file(const char *trace_file, bool readwrite);
|
D | probe-file.c | 109 int open_trace_file(const char *trace_file, bool readwrite) in open_trace_file() argument 114 ret = e_snprintf(buf, PATH_MAX, "%s/%s", tracing_path_mount(), trace_file); in open_trace_file()
|