Lines Matching refs:sym_evsel

227 	printf("Showing %s for %s\n", perf_evsel__name(top->sym_evsel), symbol->name);  in perf_top__show_details()
230 more = symbol__annotate_printf(symbol, he->ms.map, top->sym_evsel, in perf_top__show_details()
233 symbol__annotate_zero_histogram(symbol, top->sym_evsel->idx); in perf_top__show_details()
235 symbol__annotate_decay_histogram(symbol, top->sym_evsel->idx); in perf_top__show_details()
275 if (top->sym_evsel->hists.stats.nr_lost_warned != in perf_top__print_sym_table()
276 top->sym_evsel->hists.stats.nr_events[PERF_RECORD_LOST]) { in perf_top__print_sym_table()
277 top->sym_evsel->hists.stats.nr_lost_warned = in perf_top__print_sym_table()
278 top->sym_evsel->hists.stats.nr_events[PERF_RECORD_LOST]; in perf_top__print_sym_table()
281 top->sym_evsel->hists.stats.nr_lost_warned); in perf_top__print_sym_table()
290 hists__collapse_resort(&top->sym_evsel->hists); in perf_top__print_sym_table()
291 hists__output_resort(&top->sym_evsel->hists); in perf_top__print_sym_table()
292 hists__decay_entries(&top->sym_evsel->hists, in perf_top__print_sym_table()
295 hists__output_recalc_col_len(&top->sym_evsel->hists, in perf_top__print_sym_table()
298 hists__fprintf(&top->sym_evsel->hists, false, in perf_top__print_sym_table()
359 next = rb_first(&top->sym_evsel->hists.entries); in perf_top__prompt_symbol()
393 …stdout, "\t[E] active event counter. \t(%s)\n", perf_evsel__name(top->sym_evsel)); in perf_top__print_mapped_keys()
488 list_for_each_entry(top->sym_evsel, &top->evlist->entries, node) in perf_top__handle_keypress()
489 fprintf(stderr, "\n\t%d %s", top->sym_evsel->idx, perf_evsel__name(top->sym_evsel)); in perf_top__handle_keypress()
494 top->sym_evsel = perf_evlist__first(top->evlist); in perf_top__handle_keypress()
495 fprintf(stderr, "Sorry, no such event, using %s.\n", perf_evsel__name(top->sym_evsel)); in perf_top__handle_keypress()
499 list_for_each_entry(top->sym_evsel, &top->evlist->entries, node) in perf_top__handle_keypress()
500 if (top->sym_evsel->idx == counter) in perf_top__handle_keypress()
503 top->sym_evsel = perf_evlist__first(top->evlist); in perf_top__handle_keypress()
554 t->sym_evsel = t->evlist->selected; in perf_top__sort_new_samples()
556 hists__collapse_resort(&t->sym_evsel->hists); in perf_top__sort_new_samples()
557 hists__output_resort(&t->sym_evsel->hists); in perf_top__sort_new_samples()
558 hists__decay_entries(&t->sym_evsel->hists, in perf_top__sort_new_samples()
1222 top.sym_evsel = perf_evlist__first(top.evlist); in cmd_top()