Lines Matching full:he
148 struct hist_entry *he; member
307 static __pure inline bool hist_entry__has_callchains(struct hist_entry *he) in hist_entry__has_callchains() argument
309 return he->callchain_size != 0; in hist_entry__has_callchains()
312 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument
314 return !list_empty(&he->pairs.node); in hist_entry__has_pairs()
317 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument
319 if (hist_entry__has_pairs(he)) in hist_entry__next_pair()
320 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair()
325 struct hist_entry *he) in hist_entry__add_pair() argument
327 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair()
360 int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
362 int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
364 int hist_entry__sym_snprintf(struct hist_entry *he, char *bf, size_t size,
366 void hist_entry__delete(struct hist_entry *he);
368 typedef int (*hists__resort_cb_t)(struct hist_entry *he, void *arg);
415 void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
421 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument
423 u64 period = he->stat.period; in hist_entry__get_percent_limit()
424 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit()
430 period = he->stat_acc->period; in hist_entry__get_percent_limit()
479 void (*init)(struct perf_hpp_fmt *fmt, struct hist_entry *he);
481 struct hist_entry *he);
483 struct hist_entry *he);
607 int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
634 typedef u64 (*hpp_field_fn)(struct hist_entry *he);
639 struct hist_entry *he, hpp_field_fn get_field,
643 struct hist_entry *he, hpp_field_fn get_field,
685 struct hist_entry he; member
695 int hist_entry__tui_annotate(struct hist_entry *he, struct evsel *evsel,
728 static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused, in hist_entry__tui_annotate()
796 bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
799 int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,