Lines Matching refs:he
117 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument
119 return !list_empty(&he->pairs.node); in hist_entry__has_pairs()
122 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument
124 if (hist_entry__has_pairs(he)) in hist_entry__next_pair()
125 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair()
130 struct hist_entry *he) in hist_entry__add_pair() argument
132 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair()
135 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument
137 u64 period = he->stat.period; in hist_entry__get_percent_limit()
138 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit()
144 period = he->stat_acc->period; in hist_entry__get_percent_limit()
204 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,