Lines Matching refs:he
128 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument
130 return !list_empty(&he->pairs.node); in hist_entry__has_pairs()
133 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument
135 if (hist_entry__has_pairs(he)) in hist_entry__next_pair()
136 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair()
141 struct hist_entry *he) in hist_entry__add_pair() argument
143 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair()
146 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument
148 u64 period = he->stat.period; in hist_entry__get_percent_limit()
149 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit()
155 period = he->stat_acc->period; in hist_entry__get_percent_limit()
219 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,