Lines Matching refs:he
51 struct hist_entry *he; in perf_evsel__add_sample() local
66 he = __hists__add_entry(&evsel->hists, al, NULL, 1, 1); in perf_evsel__add_sample()
67 if (he == NULL) in perf_evsel__add_sample()
71 if (he->ms.sym != NULL) { in perf_evsel__add_sample()
72 struct annotation *notes = symbol__annotation(he->ms.sym); in perf_evsel__add_sample()
73 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0) in perf_evsel__add_sample()
76 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in perf_evsel__add_sample()
111 static int hist_entry__tty_annotate(struct hist_entry *he, in hist_entry__tty_annotate() argument
115 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel, in hist_entry__tty_annotate()
127 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); in hists__find_annotations() local
130 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned) in hists__find_annotations()
133 notes = symbol__annotation(he->ms.sym); in hists__find_annotations()
146 ret = hist_entry__gtk_annotate(he, evsel, NULL); in hists__find_annotations()
153 key = hist_entry__tui_annotate(he, evsel, NULL); in hists__find_annotations()
172 hist_entry__tty_annotate(he, evsel, ann); in hists__find_annotations()