Lines Matching refs:symbol_conf
95 symbol_conf.event_group = perf_config_bool(var, value); in report__config()
106 symbol_conf.cumulate_callchain = perf_config_bool(var, value); in report__config()
154 } else if (symbol_conf.cumulate_callchain) { in hist_iter__report_callback()
239 .hide_unresolved = symbol_conf.hide_unresolved, in process_sample_event()
255 if (symbol_conf.hide_unresolved && al.sym == NULL) in process_sample_event()
273 } else if (symbol_conf.cumulate_callchain) { in process_sample_event()
336 if (symbol_conf.use_callchain && in report__setup_sample_type()
337 !symbol_conf.show_branchflag_count) { in report__setup_sample_type()
345 !symbol_conf.use_callchain) { in report__setup_sample_type()
346 symbol_conf.use_callchain = true; in report__setup_sample_type()
353 if (symbol_conf.cumulate_callchain) { in report__setup_sample_type()
356 symbol_conf.cumulate_callchain = false; in report__setup_sample_type()
370 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) { in report__setup_sample_type()
409 if (symbol_conf.filter_relative) { in hists__fprintf_nr_sample_events()
423 if (symbol_conf.filter_relative) { in hists__fprintf_nr_sample_events()
443 if (symbol_conf.show_ref_callgraph && in hists__fprintf_nr_sample_events()
475 if (symbol_conf.event_group && in perf_evlist__tty_browse_hists()
481 !(symbol_conf.use_callchain || in perf_evlist__tty_browse_hists()
482 symbol_conf.show_branchflag_count)); in perf_evlist__tty_browse_hists()
605 if (symbol_conf.event_group && in report__collapse_hists()
902 symbol_conf.use_callchain = false; in report_parse_callchain_opt()
1005 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, in cmd_report()
1007 OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux, in cmd_report()
1009 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, in cmd_report()
1011 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"), in cmd_report()
1012 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, in cmd_report()
1014 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples, in cmd_report()
1032 OPT_BOOLEAN(0, "show-cpu-utilization", &symbol_conf.show_cpu_utilization, in cmd_report()
1034 OPT_BOOLEAN_FLAG(0, "showcpuutilization", &symbol_conf.show_cpu_utilization, in cmd_report()
1038 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other, in cmd_report()
1044 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain, in cmd_report()
1055 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]", in cmd_report()
1057 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]", in cmd_report()
1059 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]", in cmd_report()
1061 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]", in cmd_report()
1063 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", in cmd_report()
1067 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str, in cmd_report()
1070 OPT_STRING_NOEMPTY('t', "field-separator", &symbol_conf.field_sep, "separator", in cmd_report()
1073 OPT_BOOLEAN('U', "hide-unresolved", &symbol_conf.hide_unresolved, in cmd_report()
1088 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period, in cmd_report()
1090 OPT_BOOLEAN_SET(0, "group", &symbol_conf.event_group, &report.group_set, in cmd_report()
1099 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle, in cmd_report()
1101 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel, in cmd_report()
1113 OPT_BOOLEAN(0, "show-ref-call-graph", &symbol_conf.show_ref_callgraph, in cmd_report()
1117 OPT_BOOLEAN(0, "raw-trace", &symbol_conf.raw_trace, in cmd_report()
1119 OPT_BOOLEAN(0, "hierarchy", &symbol_conf.report_hierarchy, in cmd_report()
1126 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name, in cmd_report()
1163 if (symbol_conf.vmlinux_name && in cmd_report()
1164 access(symbol_conf.vmlinux_name, R_OK)) { in cmd_report()
1165 pr_err("Invalid file: %s\n", symbol_conf.vmlinux_name); in cmd_report()
1168 if (symbol_conf.kallsyms_name && in cmd_report()
1169 access(symbol_conf.kallsyms_name, R_OK)) { in cmd_report()
1170 pr_err("Invalid file: %s\n", symbol_conf.kallsyms_name); in cmd_report()
1176 if (symbol_conf.cumulate_callchain && !callchain_param.order_set) in cmd_report()
1191 data.force = symbol_conf.force; in cmd_report()
1216 symbol_conf.show_branchflag_count = true; in cmd_report()
1228 symbol_conf.cumulate_callchain = false; in cmd_report()
1233 symbol_conf.use_callchain = true; in cmd_report()
1245 symbol_conf.cumulate_callchain = false; in cmd_report()
1248 if (symbol_conf.report_hierarchy) { in cmd_report()
1250 symbol_conf.cumulate_callchain = false; in cmd_report()
1331 symbol_conf.priv_size += sizeof(u32); in cmd_report()
1332 symbol_conf.sort_by_name = true; in cmd_report()