Lines Matching refs:report
44 struct report { struct
71 struct report *rep = cb; in report__config() argument
98 struct report *rep = arg; in hist_iter__report_callback()
144 struct report *rep = container_of(tool, struct report, tool); in process_sample_event()
199 struct report *rep = container_of(tool, struct report, tool); in process_read_event()
218 static int report__setup_sample_type(struct report *rep) in report__setup_sample_type()
296 static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep, in hists__fprintf_nr_sample_events()
355 struct report *rep, in perf_evlist__tty_browse_hists()
388 static void report__warn_kptr_restrict(const struct report *rep) in report__warn_kptr_restrict()
417 static int report__gtk_browse_hists(struct report *rep, const char *help) in report__gtk_browse_hists()
432 static int report__browse_hists(struct report *rep) in report__browse_hists()
462 static void report__collapse_hists(struct report *rep) in report__collapse_hists()
492 static void report__output_resort(struct report *rep) in report__output_resort()
505 static int __cmd_report(struct report *rep) in __cmd_report()
577 struct report *rep = (struct report *)opt->value; in report_parse_callchain_opt()
622 struct report *rep = opt->value; in parse_percent_limit()
647 struct report report = { in cmd_report() local
686 OPT_BOOLEAN('T', "threads", &report.show_threads, in cmd_report()
688 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key", in cmd_report()
690 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"), in cmd_report()
691 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"), in cmd_report()
692 OPT_BOOLEAN(0, "stdio", &report.use_stdio, in cmd_report()
694 OPT_BOOLEAN(0, "header", &report.header, "Show data header."), in cmd_report()
695 OPT_BOOLEAN(0, "header-only", &report.header_only, in cmd_report()
710 OPT_CALLBACK_DEFAULT('g', "call-graph", &report, in cmd_report()
716 OPT_INTEGER(0, "max-stack", &report.max_stack, in cmd_report()
720 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain, in cmd_report()
735 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter", in cmd_report()
743 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved, in cmd_report()
747 OPT_STRING('C', "cpu", &report.cpu_list, "cpu", in cmd_report()
749 OPT_BOOLEAN('I', "show-info", &report.show_full_info, in cmd_report()
772 OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"), in cmd_report()
773 OPT_CALLBACK(0, "percent-limit", &report, "percent", in cmd_report()
784 OPT_INTEGER(0, "socket-filter", &report.socket_filter, in cmd_report()
796 perf_config(report__config, &report); in cmd_report()
811 if (report.use_stdio) in cmd_report()
813 else if (report.use_tui) in cmd_report()
815 else if (report.use_gtk) in cmd_report()
818 if (report.inverted_callchain) in cmd_report()
824 (int)itrace_synth_opts.callchain_sz > report.max_stack) in cmd_report()
825 report.max_stack = itrace_synth_opts.callchain_sz; in cmd_report()
838 session = perf_session__new(&file, false, &report.tool); in cmd_report()
842 if (report.queue_size) { in cmd_report()
844 report.queue_size); in cmd_report()
849 report.session = session; in cmd_report()
876 if (report.mem_mode) { in cmd_report()
895 if (report.header || report.header_only || report.show_threads) in cmd_report()
903 if (report.header || report.header_only) { in cmd_report()
905 report.show_full_info); in cmd_report()
906 if (report.header_only) { in cmd_report()
952 report.symbol_filter_str = argv[0]; in cmd_report()
957 ret = __cmd_report(&report); in cmd_report()