Lines Matching refs:he
146 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument
148 return !list_empty(&he->pairs.node); in hist_entry__has_pairs()
151 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument
153 if (hist_entry__has_pairs(he)) in hist_entry__next_pair()
154 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair()
159 struct hist_entry *he) in hist_entry__add_pair() argument
161 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair()
164 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument
166 u64 period = he->stat.period; in hist_entry__get_percent_limit()
167 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit()
173 period = he->stat_acc->period; in hist_entry__get_percent_limit()
250 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
252 int (*se_filter)(struct hist_entry *he, int type, const void *arg);