Lines Matching refs:report

42 struct report {  struct
67 struct report *rep = cb; in report__config() argument
94 struct report *rep = arg; in hist_iter__report_callback()
137 struct report *rep = container_of(tool, struct report, tool); in process_sample_event()
183 struct report *rep = container_of(tool, struct report, tool); in process_read_event()
202 static int report__setup_sample_type(struct report *rep) in report__setup_sample_type()
265 static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep, in hists__fprintf_nr_sample_events()
314 struct report *rep, in perf_evlist__tty_browse_hists()
347 static void report__warn_kptr_restrict(const struct report *rep) in report__warn_kptr_restrict()
376 static int report__gtk_browse_hists(struct report *rep, const char *help) in report__gtk_browse_hists()
391 static int report__browse_hists(struct report *rep) in report__browse_hists()
421 static void report__collapse_hists(struct report *rep) in report__collapse_hists()
449 static void report__output_resort(struct report *rep) in report__output_resort()
462 static int __cmd_report(struct report *rep) in __cmd_report()
534 struct report *rep = (struct report *)opt->value; in report_parse_callchain_opt()
579 struct report *rep = opt->value; in parse_percent_limit()
597 struct report report = { in cmd_report() local
627 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"), in cmd_report()
632 OPT_BOOLEAN('T', "threads", &report.show_threads, in cmd_report()
634 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key", in cmd_report()
636 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"), in cmd_report()
637 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"), in cmd_report()
638 OPT_BOOLEAN(0, "stdio", &report.use_stdio, in cmd_report()
640 OPT_BOOLEAN(0, "header", &report.header, "Show data header."), in cmd_report()
641 OPT_BOOLEAN(0, "header-only", &report.header_only, in cmd_report()
654 …OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order… in cmd_report()
659 OPT_INTEGER(0, "max-stack", &report.max_stack, in cmd_report()
663 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain, in cmd_report()
678 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter", in cmd_report()
686 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved, in cmd_report()
690 OPT_STRING('C', "cpu", &report.cpu_list, "cpu", in cmd_report()
692 OPT_BOOLEAN('I', "show-info", &report.show_full_info, in cmd_report()
715 OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"), in cmd_report()
716 OPT_CALLBACK(0, "percent-limit", &report, "percent", in cmd_report()
730 perf_config(report__config, &report); in cmd_report()
734 if (report.use_stdio) in cmd_report()
736 else if (report.use_tui) in cmd_report()
738 else if (report.use_gtk) in cmd_report()
741 if (report.inverted_callchain) in cmd_report()
752 file.force = report.force; in cmd_report()
755 session = perf_session__new(&file, false, &report.tool); in cmd_report()
759 if (report.queue_size) { in cmd_report()
761 report.queue_size); in cmd_report()
764 report.session = session; in cmd_report()
788 if (report.mem_mode) { in cmd_report()
807 if (report.header || report.header_only) in cmd_report()
815 if (report.header || report.header_only) { in cmd_report()
817 report.show_full_info); in cmd_report()
818 if (report.header_only) in cmd_report()
862 report.symbol_filter_str = argv[0]; in cmd_report()
867 ret = __cmd_report(&report); in cmd_report()