Home
last modified time | relevance | path

Searched refs:input (Results 1 – 22 of 22) sorted by relevance

/tools/perf/util/
Dsrcline.c20 const char *input; member
121 a2l->input = strdup(path); in addr2line_init()
122 if (a2l->input == NULL) in addr2line_init()
132 zfree((char **)&a2l->input); in addr2line_init()
143 zfree((char **)&a2l->input); in addr2line_cleanup()
Dheader.c1621 int input, u64 offset, u64 size) in perf_header__read_build_ids_abi_quirk() argument
1636 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev)) in perf_header__read_build_ids_abi_quirk()
1643 if (readn(input, filename, len) != len) in perf_header__read_build_ids_abi_quirk()
1667 int input, u64 offset, u64 size) in perf_header__read_build_ids() argument
1678 if (readn(input, &bev, sizeof(bev)) != sizeof(bev)) in perf_header__read_build_ids()
1685 if (readn(input, filename, len) != len) in perf_header__read_build_ids()
1701 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1) in perf_header__read_build_ids()
1703 return perf_header__read_build_ids_abi_quirk(header, input, offset, size); in perf_header__read_build_ids()
/tools/perf/Documentation/
Dperf-kmem.txt25 --input=<file>::
26 Select the input file (default: perf.data unless stdin is a fifo)
Dperf-buildid-list.txt20 file using -i/--input.
28 --input=::
Dperf-annotate.txt11 'perf annotate' [-i <file> | --input=file] [symbol_name]
15 This command reads the input file and displays an annotated version of the
24 --input=::
Dperf-evlist.txt20 --input=::
Dperf-kvm.txt29 is input, the perf data file name is perf.data.guest. If --host is input,
31 perf.data.host, please input --host --no-guest. The behaviors are shown as
70 --input=<path>::
Dperf-lock.txt34 --input=<file>::
Dperf-inject.txt33 --input=::
Dperf-timechart.txt39 --input=::
40 Select the input file (default: perf.data unless stdin is a fifo)
Dperf-sched.txt42 --input=<file>::
Dperf-script.txt19 This command reads the input file and displays the trace recorded.
108 --input=::
Dperf-trace.txt86 --input
Dperf-report.txt11 'perf report' [-i <file> | --input=file]
21 --input=::
Dperf-top.txt235 Pressing any unmapped key displays a menu, and prompts for input.
Dperf-script-perl.txt17 built-in Perl interpreter. It reads and processes the input file and
Dperf-script-python.txt17 built-in Python interpreter. It reads and processes the input file and
/tools/perf/ui/tui/
Dutil.c72 int ui_browser__input_window(const char *title, const char *text, char *input, in ui_browser__input_window() argument
160 strncpy(input, buf, len+1); in ui_browser__input_window()
/tools/firewire/
Dnosy-dump.c914 FILE *output = NULL, *input = NULL; in main() local
938 input = fopen(option_input, "r"); in main()
939 if (input == NULL) { in main()
987 if (input != NULL) { in main()
988 if (fread(&length, sizeof length, 1, input) != 1) in main()
990 fread(buf, 1, length, input); in main()
/tools/perf/ui/
Dbrowser.h59 int ui_browser__input_window(const char *title, const char *text, char *input,
/tools/lib/traceevent/
Dparse-filter.c44 const char *input; in show_error() local
49 input = pevent_get_input_buf(); in show_error()
51 len = input ? strlen(input) : 0; in show_error()
54 strcpy(error_buf, input); in show_error()
/tools/perf/
Dbuiltin-script.c1785 int input; in cmd_script() local
1794 input = open(file.path, O_RDONLY); /* input_name */ in cmd_script()
1795 if (input < 0) { in cmd_script()
1801 err = fstat(input, &perf_stat); in cmd_script()