• Home
  • Raw
  • Download

Lines Matching refs:hists

70 struct hists {  struct
128 struct hist_entry *hists__add_entry(struct hists *hists,
136 struct hist_entry *hists__add_entry_ops(struct hists *hists,
155 struct hists *hists);
163 void hists__output_resort(struct hists *hists, struct ui_progress *prog);
164 void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
166 int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
168 void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
169 void hists__delete_entries(struct hists *hists);
170 void hists__output_recalc_col_len(struct hists *hists, int max_rows);
172 u64 hists__total_period(struct hists *hists);
173 void hists__reset_stats(struct hists *hists);
174 void hists__inc_stats(struct hists *hists, struct hist_entry *h);
175 void hists__inc_nr_events(struct hists *hists, u32 type);
176 void hists__inc_nr_samples(struct hists *hists, bool filtered);
180 size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
185 void hists__filter_by_dso(struct hists *hists);
186 void hists__filter_by_thread(struct hists *hists);
187 void hists__filter_by_symbol(struct hists *hists);
188 void hists__filter_by_socket(struct hists *hists);
190 static inline bool hists__has_filter(struct hists *hists) in hists__has_filter() argument
192 return hists->thread_filter || hists->dso_filter || in hists__has_filter()
193 hists->symbol_filter_str || (hists->socket_filter > -1); in hists__has_filter()
196 u16 hists__col_len(struct hists *hists, enum hist_column col);
197 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
198 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
199 void hists__reset_col_len(struct hists *hists);
200 void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
202 void hists__match(struct hists *leader, struct hists *other);
203 int hists__link(struct hists *leader, struct hists *other);
207 struct hists hists; member
210 static inline struct perf_evsel *hists_to_evsel(struct hists *hists) in hists_to_evsel() argument
212 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists); in hists_to_evsel()
216 static inline struct hists *evsel__hists(struct perf_evsel *evsel) in evsel__hists()
219 return &hevsel->hists; in evsel__hists()
223 int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
225 struct rb_root *hists__get_rotate_entries_in(struct hists *hists);
237 struct hists *hists, int line, int *span);
239 struct hists *hists);
319 #define hists__for_each_format(hists, format) \ argument
320 perf_hpp_list__for_each_format((hists)->hpp_list, format)
322 #define hists__for_each_sort_list(hists, format) \ argument
323 perf_hpp_list__for_each_sort_list((hists)->hpp_list, format)
353 bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
367 struct hists *hists) in perf_hpp__should_skip() argument
373 !perf_hpp__defined_dynamic_entry(format, hists)) in perf_hpp__should_skip()
379 void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
380 void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
382 void hists__reset_column_width(struct hists *hists);
468 unsigned int hists__sort_list_width(struct hists *hists);
469 unsigned int hists__overhead_width(struct hists *hists);
503 int hists__fprintf_headers(struct hists *hists, FILE *fp);