Lines Matching full:he
160 struct hist_entry *he; member
321 static __pure inline bool hist_entry__has_callchains(struct hist_entry *he) in hist_entry__has_callchains() argument
323 return he->callchain_size != 0; in hist_entry__has_callchains()
326 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument
328 return !list_empty(&he->pairs.node); in hist_entry__has_pairs()
331 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument
333 if (hist_entry__has_pairs(he)) in hist_entry__next_pair()
334 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair()
339 struct hist_entry *he) in hist_entry__add_pair() argument
341 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair()
374 int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
376 int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
378 int hist_entry__sym_snprintf(struct hist_entry *he, char *bf, size_t size,
380 void hist_entry__delete(struct hist_entry *he);
382 typedef int (*hists__resort_cb_t)(struct hist_entry *he, void *arg);
429 void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
435 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument
437 u64 period = he->stat.period; in hist_entry__get_percent_limit()
438 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit()
444 period = he->stat_acc->period; in hist_entry__get_percent_limit()
493 void (*init)(struct perf_hpp_fmt *fmt, struct hist_entry *he);
495 struct hist_entry *he);
497 struct hist_entry *he);
628 int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
655 typedef u64 (*hpp_field_fn)(struct hist_entry *he);
660 struct hist_entry *he, hpp_field_fn get_field,
664 struct hist_entry *he, hpp_field_fn get_field,
668 struct hist_entry *he, enum mem_stat_type mst,
709 struct hist_entry he; member
716 int __hist_entry__tui_annotate(struct hist_entry *he, struct map_symbol *ms,
720 int hist_entry__tui_annotate(struct hist_entry *he, struct evsel *evsel,
746 static inline int __hist_entry__tui_annotate(struct hist_entry *he __maybe_unused, in __hist_entry__tui_annotate()
754 static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused, in hist_entry__tui_annotate()
822 bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
825 int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,