Lines Matching refs:he
268 static size_t hist_entry_callchain__fprintf(struct hist_entry *he, in hist_entry_callchain__fprintf() argument
274 return callchain__fprintf_graph(fp, &he->sorted_chain, in hist_entry_callchain__fprintf()
276 he->stat_acc->period : he->stat.period, in hist_entry_callchain__fprintf()
280 return callchain__fprintf_graph(fp, &he->sorted_chain, total_samples, in hist_entry_callchain__fprintf()
284 return callchain__fprintf_flat(fp, &he->sorted_chain, total_samples); in hist_entry_callchain__fprintf()
295 static size_t hist_entry__callchain_fprintf(struct hist_entry *he, in hist_entry__callchain_fprintf() argument
312 left_margin -= thread__comm_len(he->thread); in hist_entry__callchain_fprintf()
316 return hist_entry_callchain__fprintf(he, total_period, left_margin, fp); in hist_entry__callchain_fprintf()
319 static int hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp) in hist_entry__snprintf() argument
327 if (symbol_conf.exclude_other && !he->parent) in hist_entry__snprintf()
345 ret = fmt->color(fmt, hpp, he); in hist_entry__snprintf()
347 ret = fmt->entry(fmt, hpp, he); in hist_entry__snprintf()
355 static int hist_entry__fprintf(struct hist_entry *he, size_t size, in hist_entry__fprintf() argument
368 hist_entry__snprintf(he, &hpp); in hist_entry__fprintf()
373 ret += hist_entry__callchain_fprintf(he, hists, fp); in hist_entry__fprintf()