Lines Matching refs:he
263 static size_t hist_entry_callchain__fprintf(struct hist_entry *he, in hist_entry_callchain__fprintf() argument
269 return callchain__fprintf_graph(fp, &he->sorted_chain, in hist_entry_callchain__fprintf()
271 he->stat_acc->period : he->stat.period, in hist_entry_callchain__fprintf()
275 return callchain__fprintf_graph(fp, &he->sorted_chain, total_samples, in hist_entry_callchain__fprintf()
279 return callchain__fprintf_flat(fp, &he->sorted_chain, total_samples); in hist_entry_callchain__fprintf()
290 static size_t hist_entry__callchain_fprintf(struct hist_entry *he, in hist_entry__callchain_fprintf() argument
307 left_margin -= thread__comm_len(he->thread); in hist_entry__callchain_fprintf()
311 return hist_entry_callchain__fprintf(he, total_period, left_margin, fp); in hist_entry__callchain_fprintf()
314 static int hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp) in hist_entry__snprintf() argument
322 if (symbol_conf.exclude_other && !he->parent) in hist_entry__snprintf()
340 ret = fmt->color(fmt, hpp, he); in hist_entry__snprintf()
342 ret = fmt->entry(fmt, hpp, he); in hist_entry__snprintf()
350 static int hist_entry__fprintf(struct hist_entry *he, size_t size, in hist_entry__fprintf() argument
363 hist_entry__snprintf(he, &hpp); in hist_entry__fprintf()
368 ret += hist_entry__callchain_fprintf(he, hists, fp); in hist_entry__fprintf()