Lines Matching refs:he
90 static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he) in perf_top__parse_source() argument
97 if (!he || !he->ms.sym) in perf_top__parse_source()
100 sym = he->ms.sym; in perf_top__parse_source()
101 map = he->ms.map; in perf_top__parse_source()
133 top->sym_filter_entry = he; in perf_top__parse_source()
140 static void __zero_source_counters(struct hist_entry *he) in __zero_source_counters() argument
142 struct symbol *sym = he->ms.sym; in __zero_source_counters()
174 struct hist_entry *he, in perf_top__record_precise_ip() argument
181 if (he == NULL || he->ms.sym == NULL || in perf_top__record_precise_ip()
183 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1)) in perf_top__record_precise_ip()
186 sym = he->ms.sym; in perf_top__record_precise_ip()
192 ip = he->ms.map->map_ip(he->ms.map, ip); in perf_top__record_precise_ip()
195 err = hist_entry__inc_addr_samples(he, counter, ip); in perf_top__record_precise_ip()
203 pthread_mutex_unlock(&he->hists->lock); in perf_top__record_precise_ip()
205 if (err == -ERANGE && !he->ms.map->erange_warned) in perf_top__record_precise_ip()
206 ui__warn_map_erange(he->ms.map, sym, ip); in perf_top__record_precise_ip()
213 pthread_mutex_lock(&he->hists->lock); in perf_top__record_precise_ip()
218 struct hist_entry *he = top->sym_filter_entry; in perf_top__show_details() local
223 if (!he) in perf_top__show_details()
226 symbol = he->ms.sym; in perf_top__show_details()
237 more = symbol__annotate_printf(symbol, he->ms.map, top->sym_evsel, in perf_top__show_details()
679 struct hist_entry *he = iter->he; in hist_iter__top_callback() local
688 perf_top__record_precise_ip(top, he, evsel->idx, ip); in hist_iter__top_callback()