Lines Matching refs:report

549 	struct perf_report report = {  in cmd_report()  local
568 OPT_STRING('i', "input", &report.input_name, "file", in cmd_report()
578 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"), in cmd_report()
583 OPT_BOOLEAN('T', "threads", &report.show_threads, in cmd_report()
585 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key", in cmd_report()
587 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"), in cmd_report()
588 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"), in cmd_report()
589 OPT_BOOLEAN(0, "stdio", &report.use_stdio, in cmd_report()
600 …OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order… in cmd_report()
603 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain, in cmd_report()
611 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter", in cmd_report()
619 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved, in cmd_report()
623 OPT_STRING('C', "cpu", &report.cpu_list, "cpu", in cmd_report()
625 OPT_BOOLEAN('I', "show-info", &report.show_full_info, in cmd_report()
642 if (report.use_stdio) in cmd_report()
644 else if (report.use_tui) in cmd_report()
646 else if (report.use_gtk) in cmd_report()
649 if (report.inverted_callchain) in cmd_report()
652 if (!report.input_name || !strlen(report.input_name)) { in cmd_report()
654 report.input_name = "-"; in cmd_report()
656 report.input_name = "perf.data"; in cmd_report()
658 session = perf_session__new(report.input_name, O_RDONLY, in cmd_report()
659 report.force, false, &report.tool); in cmd_report()
663 report.session = session; in cmd_report()
683 if (strcmp(report.input_name, "-") != 0) { in cmd_report()
684 if (report.use_gtk) in cmd_report()
699 report.annotate_init = symbol__annotate_init; in cmd_report()
744 report.symbol_filter_str = argv[0]; in cmd_report()
759 ret = __cmd_report(&report); in cmd_report()