Lines Matching refs:symbol_conf

74 		symbol_conf.event_group = perf_config_bool(var, value);  in report__config()
82 symbol_conf.cumulate_callchain = perf_config_bool(var, value); in report__config()
126 } else if (symbol_conf.cumulate_callchain) { in hist_iter__report_callback()
176 } else if (symbol_conf.cumulate_callchain) { in process_sample_event()
240 if (symbol_conf.use_callchain) { in report__setup_sample_type()
248 !symbol_conf.use_callchain) { in report__setup_sample_type()
249 symbol_conf.use_callchain = true; in report__setup_sample_type()
256 if (symbol_conf.cumulate_callchain) { in report__setup_sample_type()
259 symbol_conf.cumulate_callchain = false; in report__setup_sample_type()
273 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) { in report__setup_sample_type()
308 if (symbol_conf.filter_relative) { in hists__fprintf_nr_sample_events()
322 if (symbol_conf.filter_relative) { in hists__fprintf_nr_sample_events()
337 if (symbol_conf.show_ref_callgraph && in hists__fprintf_nr_sample_events()
365 if (symbol_conf.event_group && in perf_evlist__tty_browse_hists()
480 if (symbol_conf.event_group && in report__collapse_hists()
677 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, in cmd_report()
679 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, in cmd_report()
681 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"), in cmd_report()
682 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, in cmd_report()
684 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples, in cmd_report()
702 OPT_BOOLEAN(0, "show-cpu-utilization", &symbol_conf.show_cpu_utilization, in cmd_report()
704 OPT_BOOLEAN_FLAG(0, "showcpuutilization", &symbol_conf.show_cpu_utilization, in cmd_report()
708 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other, in cmd_report()
714 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain, in cmd_report()
725 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]", in cmd_report()
727 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]", in cmd_report()
729 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]", in cmd_report()
731 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]", in cmd_report()
733 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", in cmd_report()
737 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str, in cmd_report()
740 OPT_STRING_NOEMPTY('t', "field-separator", &symbol_conf.field_sep, "separator", in cmd_report()
745 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", in cmd_report()
751 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src, in cmd_report()
753 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw, in cmd_report()
757 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period, in cmd_report()
759 OPT_BOOLEAN(0, "group", &symbol_conf.event_group, in cmd_report()
768 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle, in cmd_report()
770 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel, in cmd_report()
782 OPT_BOOLEAN(0, "show-ref-call-graph", &symbol_conf.show_ref_callgraph, in cmd_report()
800 if (symbol_conf.vmlinux_name && in cmd_report()
801 access(symbol_conf.vmlinux_name, R_OK)) { in cmd_report()
802 pr_err("Invalid file: %s\n", symbol_conf.vmlinux_name); in cmd_report()
805 if (symbol_conf.kallsyms_name && in cmd_report()
806 access(symbol_conf.kallsyms_name, R_OK)) { in cmd_report()
807 pr_err("Invalid file: %s\n", symbol_conf.kallsyms_name); in cmd_report()
820 if (symbol_conf.cumulate_callchain && !callchain_param.order_set) in cmd_report()
835 file.force = symbol_conf.force; in cmd_report()
865 symbol_conf.cumulate_callchain = false; in cmd_report()
870 symbol_conf.use_callchain = true; in cmd_report()
882 symbol_conf.cumulate_callchain = false; in cmd_report()
921 symbol_conf.priv_size = sizeof(struct annotation); in cmd_report()
936 symbol_conf.priv_size += sizeof(u32); in cmd_report()
937 symbol_conf.sort_by_name = true; in cmd_report()