Lines Matching refs:report
2 * builtin-report.c
4 * Builtin report command: Analyze the perf.data input file,
60 if (!strcmp(var, "report.group")) {
64 if (!strcmp(var, "report.percent-limit")) {
199 * The report shows the percentage of total branches captured
488 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
741 "perf report [<options>]",
744 struct perf_report report = {
773 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"),
778 OPT_BOOLEAN('T', "threads", &report.show_threads,
780 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
782 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
783 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
784 OPT_BOOLEAN(0, "stdio", &report.use_stdio,
797 OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order",
800 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
811 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
819 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved,
823 OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
825 OPT_BOOLEAN('I', "show-info", &report.show_full_info,
843 OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
844 OPT_CALLBACK(0, "percent-limit", &report, "percent",
849 perf_config(perf_report_config, &report);
853 if (report.use_stdio)
855 else if (report.use_tui)
857 else if (report.use_gtk)
860 if (report.inverted_callchain)
879 report.force, false, &report.tool);
883 report.session = session;
902 if (report.mem_mode) {
962 report.symbol_filter_str = argv[0];
967 ret = __cmd_report(&report);