Lines Matching refs:hists
56 struct hists { struct
106 struct hist_entry *__hists__add_entry(struct hists *hists,
121 struct hists *hists);
124 void hists__output_resort(struct hists *hists, struct ui_progress *prog);
125 void hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
127 void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
128 void hists__delete_entries(struct hists *hists);
129 void hists__output_recalc_col_len(struct hists *hists, int max_rows);
131 u64 hists__total_period(struct hists *hists);
132 void hists__reset_stats(struct hists *hists);
133 void hists__inc_stats(struct hists *hists, struct hist_entry *h);
134 void hists__inc_nr_events(struct hists *hists, u32 type);
135 void hists__inc_nr_samples(struct hists *hists, bool filtered);
139 size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
143 void hists__filter_by_dso(struct hists *hists);
144 void hists__filter_by_thread(struct hists *hists);
145 void hists__filter_by_symbol(struct hists *hists);
147 static inline bool hists__has_filter(struct hists *hists) in hists__has_filter() argument
149 return hists->thread_filter || hists->dso_filter || in hists__has_filter()
150 hists->symbol_filter_str; in hists__has_filter()
153 u16 hists__col_len(struct hists *hists, enum hist_column col);
154 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
155 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
156 void hists__reset_col_len(struct hists *hists);
157 void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
159 void hists__match(struct hists *leader, struct hists *other);
160 int hists__link(struct hists *leader, struct hists *other);
164 struct hists hists; member
167 static inline struct perf_evsel *hists_to_evsel(struct hists *hists) in hists_to_evsel() argument
169 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists); in hists_to_evsel()
173 static inline struct hists *evsel__hists(struct perf_evsel *evsel) in evsel__hists()
176 return &hevsel->hists; in evsel__hists()
263 void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
264 void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
351 unsigned int hists__sort_list_width(struct hists *hists);