Home | History | Annotate | Download | only in perf

Lines Matching defs:annotate

2  * builtin-annotate.c
4 * Builtin annotate command: Analyze the perf.data input file,
22 #include "util/annotate.h"
270 "perf annotate [<options>]",
276 struct perf_annotate annotate = {
293 OPT_STRING('s', "symbol", &annotate.sym_hist_filter, "symbol",
294 "symbol to annotate"),
295 OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"),
300 OPT_BOOLEAN(0, "gtk", &annotate.use_gtk, "Use the GTK interface"),
301 OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"),
302 OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"),
307 OPT_BOOLEAN('l', "print-line", &annotate.print_line,
309 OPT_BOOLEAN('P', "full-paths", &annotate.full_paths,
311 OPT_BOOLEAN(0, "skip-missing", &annotate.skip_missing,
313 OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"),
331 if (annotate.use_stdio)
333 else if (annotate.use_tui)
335 else if (annotate.use_gtk)
357 annotate.sym_hist_filter = argv[0];
360 return __cmd_annotate(&annotate);