Lines Matching refs:symbol_conf
115 symbol_conf.event_group = perf_config_bool(var, value); in report__config()
126 symbol_conf.cumulate_callchain = perf_config_bool(var, value); in report__config()
171 } else if (symbol_conf.cumulate_callchain) { in hist_iter__report_callback()
251 .hide_unresolved = symbol_conf.hide_unresolved, in process_sample_event()
273 if (symbol_conf.hide_unresolved && al.sym == NULL) in process_sample_event()
291 } else if (symbol_conf.cumulate_callchain) { in process_sample_event()
363 if (symbol_conf.use_callchain && in report__setup_sample_type()
364 !symbol_conf.show_branchflag_count) { in report__setup_sample_type()
372 !symbol_conf.use_callchain) { in report__setup_sample_type()
373 symbol_conf.use_callchain = true; in report__setup_sample_type()
380 if (symbol_conf.cumulate_callchain) { in report__setup_sample_type()
383 symbol_conf.cumulate_callchain = false; in report__setup_sample_type()
460 if (symbol_conf.filter_relative) { in hists__fprintf_nr_sample_events()
474 if (symbol_conf.filter_relative) { in hists__fprintf_nr_sample_events()
494 if (symbol_conf.show_ref_callgraph && evname && strstr(evname, "call-graph=no")) { in hists__fprintf_nr_sample_events()
544 if (symbol_conf.event_group && !evsel__is_group_leader(pos)) in perf_evlist__tty_browse_hists()
557 !(symbol_conf.use_callchain || in perf_evlist__tty_browse_hists()
558 symbol_conf.show_branchflag_count)); in perf_evlist__tty_browse_hists()
689 if (symbol_conf.event_group && !evsel__is_group_leader(pos)) { in report__collapse_hists()
1013 symbol_conf.use_callchain = false; in report_parse_callchain_opt()
1176 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, in cmd_report()
1178 OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux, in cmd_report()
1180 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, in cmd_report()
1182 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"), in cmd_report()
1183 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, in cmd_report()
1185 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples, in cmd_report()
1202 OPT_BOOLEAN(0, "show-cpu-utilization", &symbol_conf.show_cpu_utilization, in cmd_report()
1204 OPT_BOOLEAN_FLAG(0, "showcpuutilization", &symbol_conf.show_cpu_utilization, in cmd_report()
1208 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other, in cmd_report()
1214 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain, in cmd_report()
1226 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]", in cmd_report()
1228 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]", in cmd_report()
1230 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]", in cmd_report()
1232 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]", in cmd_report()
1234 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", in cmd_report()
1238 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str, in cmd_report()
1241 OPT_STRING_NOEMPTY('t', "field-separator", &symbol_conf.field_sep, "separator", in cmd_report()
1244 OPT_BOOLEAN('U', "hide-unresolved", &symbol_conf.hide_unresolved, in cmd_report()
1263 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period, in cmd_report()
1265 OPT_BOOLEAN_SET(0, "group", &symbol_conf.event_group, &report.group_set, in cmd_report()
1267 OPT_INTEGER(0, "group-sort-idx", &symbol_conf.group_sort_idx, in cmd_report()
1278 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle, in cmd_report()
1280 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel, in cmd_report()
1283 OPT_INTEGER(0, "samples", &symbol_conf.res_sample, in cmd_report()
1294 OPT_BOOLEAN(0, "show-ref-call-graph", &symbol_conf.show_ref_callgraph, in cmd_report()
1300 OPT_BOOLEAN(0, "raw-trace", &symbol_conf.raw_trace, in cmd_report()
1302 OPT_BOOLEAN(0, "hierarchy", &symbol_conf.report_hierarchy, in cmd_report()
1309 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name, in cmd_report()
1314 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs, "Show times in nanosecs"), in cmd_report()
1315 OPT_CALLBACK(0, "time-quantum", &symbol_conf.time_quantum, "time (ms|us|ns|s)", in cmd_report()
1362 if (symbol_conf.vmlinux_name && in cmd_report()
1363 access(symbol_conf.vmlinux_name, R_OK)) { in cmd_report()
1364 pr_err("Invalid file: %s\n", symbol_conf.vmlinux_name); in cmd_report()
1368 if (symbol_conf.kallsyms_name && in cmd_report()
1369 access(symbol_conf.kallsyms_name, R_OK)) { in cmd_report()
1370 pr_err("Invalid file: %s\n", symbol_conf.kallsyms_name); in cmd_report()
1377 if (symbol_conf.cumulate_callchain && !callchain_param.order_set) in cmd_report()
1392 data.force = symbol_conf.force; in cmd_report()
1424 if (symbol_conf.group_sort_idx && !session->evlist->nr_groups) { in cmd_report()
1434 symbol_conf.show_branchflag_count = true; in cmd_report()
1446 symbol_conf.cumulate_callchain = false; in cmd_report()
1451 symbol_conf.use_callchain = true; in cmd_report()
1463 symbol_conf.cumulate_callchain = false; in cmd_report()
1466 if (symbol_conf.report_hierarchy) { in cmd_report()
1468 symbol_conf.cumulate_callchain = false; in cmd_report()
1576 symbol_conf.priv_size += sizeof(u32); in cmd_report()
1577 symbol_conf.sort_by_name = true; in cmd_report()