| /linux/tools/perf/util/ |
| H A D | sort.h | 121 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *); 122 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *); 123 int64_t (*se_sort)(struct hist_entry *, struct hist_entry *); 124 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size, 126 int (*se_filter)(struct hist_entry *he, int type, const void *arg); 127 void (*se_init)(struct hist_entry *he); 154 sort__iaddr_cmp(struct hist_entry *lef [all...] |
| H A D | hist.c | 35 static int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right); 36 static int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right); 39 struct hist_entry *he); 41 struct hist_entry *he); 43 struct hist_entry *he); 45 struct hist_entry *he); 47 struct hist_entry *he); 86 void hists__calc_col_len(struct hists *hists, struct hist_entry * [all...] |
| H A D | sort.c | 113 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) in sort__thread_cmp() 118 static int hist_entry__thread_snprintf(struct hist_entry *he, char *bf, in hist_entry__thread_snprintf() 128 static int hist_entry__thread_filter(struct hist_entry *he, int type, const void *arg) in hist_entry__thread_filter() 149 sort__tgid_cmp(struct hist_entry *left, struct hist_entry *right) in sort__tgid_cmp() 154 static int hist_entry__tgid_snprintf(struct hist_entry *he, char *bf, in hist_entry__tgid_snprintf() 186 sort__simd_cmp(struct hist_entry *left, struct hist_entry *right) in sort__simd_cmp() 208 static int hist_entry__simd_snprintf(struct hist_entry *h in hist_entry__simd_snprintf() [all...] |
| H A D | hist.h | 161 struct hist_entry *he; 166 struct hist_entry **he_cache; 234 * struct hist_entry - histogram entry 239 struct hist_entry { argument 308 struct hist_entry *parent_he; argument 322 static __pure inline bool hist_entry__has_callchains(struct hist_entry *he) in hist_entry__has_callchains() 327 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() 332 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() 335 return list_entry(he->pairs.node.next, struct hist_entry, pair in hist_entry__next_pair() 238 struct hist_entry { global() struct 240 rb_nodehist_entry global() argument 241 __anonda8afd0d020ahist_entry global() argument 244 pairshist_entry global() argument 245 stathist_entry global() argument 246 stat_acchist_entry global() argument 247 mem_stathist_entry global() argument 248 mshist_entry global() argument 249 threadhist_entry global() argument 250 commhist_entry global() argument 251 cgroup_idhist_entry global() argument 252 cgrouphist_entry global() argument 253 iphist_entry global() argument 254 transactionhist_entry global() argument 255 code_page_sizehist_entry global() argument 256 weighthist_entry global() argument 257 ins_lathist_entry global() argument 282 __anonda8afd0d030ahist_entry global() argument 307 parent_hehist_entry global() argument 321 callchainhist_entry hist_entry__has_callchains() argument [all...] |
| H A D | block-info.h | 55 int64_t __block_info__cmp(struct hist_entry *left, struct hist_entry *right); 58 struct hist_entry *left, struct hist_entry *right); 60 int block_info__process_sym(struct hist_entry *he, struct block_hist *bh, 74 float block_info__total_cycles_percent(struct hist_entry *he);
|
| H A D | block-info.c | 72 int64_t __block_info__cmp(struct hist_entry *left, struct hist_entry *right) in __block_info__cmp() 98 struct hist_entry *left, struct hist_entry *right) in block_info__cmp() 128 int block_info__process_sym(struct hist_entry *he, struct block_hist *bh, in block_info__process_sym() 151 struct hist_entry *he_block; in block_info__process_sym() 212 struct hist_entry *he) in block_total_cycles_pct_entry() 225 struct hist_entry *left, in block_total_cycles_pct_sort() 226 struct hist_entry *right) in block_total_cycles_pct_sort() 255 struct perf_hpp *hpp, struct hist_entry *h in block_cycles_lbr_entry() [all...] |
| H A D | annotate-data.h | 20 struct hist_entry; 246 int hist_entry__annotate_data_tty(struct hist_entry *he, struct evsel *evsel); 294 static inline int hist_entry__annotate_data_tty(struct hist_entry *he __maybe_unused, in hist_entry__annotate_data_tty() 311 int hist_entry__annotate_data_tui(struct hist_entry *he, struct evsel *evsel, in hist_entry__annotate_data_tui() 314 static inline int hist_entry__annotate_data_tui(struct hist_entry *he __maybe_unused, in hist_entry__annotate_data_tui()
|
| H A D | annotate.h | 21 struct hist_entry; 203 struct hist_entry *he; 436 int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, 479 struct hist_entry *he); 483 int hist_entry__annotate_printf(struct hist_entry *he, struct evsel *evsel); 484 int hist_entry__tty_annotate(struct hist_entry *he, struct evsel *evsel); 485 int hist_entry__tty_annotate2(struct hist_entry *he, struct evsel *evsel); 553 struct annotated_data_type *hist_entry__get_data_type(struct hist_entry *he);
|
| H A D | top.h | 43 struct hist_entry *sym_filter_entry;
|
| H A D | callchain.h | 12 struct hist_entry; 250 int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
|
| /linux/tools/perf/ |
| H A D | builtin-diff.c | 271 static double period_percent(struct hist_entry *he, u64 period) in period_percent() 278 static double compute_delta(struct hist_entry *he, struct hist_entry *pair) in compute_delta() 288 static double compute_ratio(struct hist_entry *he, struct hist_entry *pair) in compute_ratio() 298 static s64 compute_wdiff(struct hist_entry *he, struct hist_entry *pair) in compute_wdiff() 310 static int formula_delta(struct hist_entry *he, struct hist_entry *pair, in formula_delta() 327 static int formula_ratio(struct hist_entry *h [all...] |
| H A D | builtin-c2c.c | 85 struct hist_entry he; 205 he__get_c2c_hists(struct hist_entry *he, in he__get_c2c_hists() 303 struct hist_entry *he, in perf_c2c__evsel_hists_inc_stats() 323 struct hist_entry *he; in process_sample_event() 454 struct hist_entry *, struct hist_entry *); 456 struct hist_entry *he); 458 struct hist_entry *he); 540 struct hist_entry *left, struct hist_entry *righ in dcacheline_cmp() [all...] |
| H A D | builtin-kvm.c | 93 int64_t (*cmp)(struct perf_hpp_fmt *fmt, struct hist_entry *left, 94 struct hist_entry *right); 96 struct hist_entry *he); 107 struct hist_entry *left, in ev_name_cmp() 108 struct hist_entry *right) in ev_name_cmp() 119 struct hist_entry *he) in ev_name_entry() 136 struct hist_entry *left, \ 137 struct hist_entry *right) \ 160 struct hist_entry *he) \ 210 struct hist_entry *he) in ev_entry_mean() [all …]
|
| H A D | builtin-annotate.c | 176 struct hist_entry *he = iter->he; in hist_iter__branch_callback() 243 struct hist_entry *he; in evsel__add_sample() 315 static int hist_entry__stdio_annotate(struct hist_entry *he, 412 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); in hists__find_annotations() 495 int (*annotate)(struct hist_entry *he, in hists__find_annotations()
|
| /linux/tools/perf/tests/ |
| H A D | hists_output.c | 97 struct hist_entry *he; in del_hist_entries() 112 he = rb_entry(node, struct hist_entry, rb_node); in del_hist_entries() 142 struct hist_entry *he; in test1() 180 he = rb_entry(node, struct hist_entry, rb_node); in test1() 186 he = rb_entry(node, struct hist_entry, rb_node); in test1() 192 he = rb_entry(node, struct hist_entry, rb_node); in test1() 198 he = rb_entry(node, struct hist_entry, rb_node); in test1() 204 he = rb_entry(node, struct hist_entry, rb_node); in test1() 210 he = rb_entry(node, struct hist_entry, rb_node); in test1() 216 he = rb_entry(node, struct hist_entry, rb_nod in test1() [all...] |
| H A D | hists_common.c | 177 struct hist_entry *he; in print_hists_in() 179 he = rb_entry(node, struct hist_entry, rb_node_in); in print_hists_in() 206 struct hist_entry *he; in print_hists_out() 208 he = rb_entry(node, struct hist_entry, rb_node); in print_hists_out()
|
| H A D | hists_link.c | 70 struct hist_entry *he; in add_hist_entries() 176 struct hist_entry *he; in __validate_match() 178 he = rb_entry(node, struct hist_entry, rb_node_in); in __validate_match() 228 struct hist_entry *he; in __validate_link() 230 he = rb_entry(node, struct hist_entry, rb_node_in); in __validate_link()
|
| H A D | hists_cumulate.c | 132 struct hist_entry *he; in del_hist_entries() 147 he = rb_entry(node, struct hist_entry, rb_node); in del_hist_entries() 195 struct hist_entry *he; in do_test() 217 node && (he = rb_entry(node, struct hist_entry, rb_node)); in do_test()
|
| /linux/tools/perf/ui/ |
| H A D | hist.c | 59 static int __hpp__fmt(struct perf_hpp *hpp, struct hist_entry *he, in __hpp__fmt() 84 struct hist_entry *pair; in __hpp__fmt() 124 struct hist_entry *he, hpp_field_fn get_field, in hpp__fmt() 144 struct hist_entry *he, hpp_field_fn get_field, in hpp__fmt_acc() 157 struct hist_entry *he, enum mem_stat_type mst, in hpp__fmt_mem_stat() 207 static int hist_entry__new_pair(struct hist_entry *a, struct hist_entry *b, in hist_entry__new_pair() 213 struct hist_entry *pair; in hist_entry__new_pair() 238 static int __hpp__group_sort_idx(struct hist_entry *a, struct hist_entry *b, in __hpp__group_sort_idx() 278 static int __hpp__sort(struct hist_entry *a, struct hist_entry *b, in __hpp__sort() 317 static int __hpp__sort_acc(struct hist_entry *a, struct hist_entry *b, in __hpp__sort_acc() [all …]
|
| /linux/tools/perf/ui/browsers/ |
| H A D | hists.c | 71 struct hist_entry *he = in hist_browser__get_folding() 72 rb_entry(nd, struct hist_entry, rb_node); in hist_browser__get_folding() 162 static char hist_entry__folded(const struct hist_entry *he) in hist_entry__folded() 273 static int hierarchy_count_rows(struct hist_browser *hb, struct hist_entry *he, in hierarchy_count_rows() 278 struct hist_entry *child; in hierarchy_count_rows() 290 child = rb_entry(node, struct hist_entry, rb_node); in hierarchy_count_rows() 305 static bool hist_entry__toggle_fold(struct hist_entry *he) in hist_entry__toggle_fold() 382 static void hist_entry__init_have_children(struct hist_entry *he) in hist_entry__init_have_children() 399 struct hist_entry *he = browser->he_selection; in hist_browser__selection_has_children() 413 struct hist_entry *he = browser->he_selection; in hist_browser__selection_unfolded() [all …]
|
| H A D | annotate-data.c | 155 struct hist_entry *he = browser->b.priv; in annotated_data_browser__collect_entries() 336 struct hist_entry *he = uib->priv; in browser__show() 392 struct hist_entry *he = uib->priv; in browser__write() 570 int hist_entry__annotate_data_tui(struct hist_entry *he, struct evsel *evsel, in hist_entry__annotate_data_tui()
|
| H A D | hists.h | 12 struct hist_entry *he_selection;
|
| /linux/tools/perf/ui/gtk/ |
| H A D | gtk.h | 57 struct hist_entry; 62 int hist_entry__gtk_annotate(struct hist_entry *he,
|
| H A D | hists.c | 44 static u64 he_get_##_field(struct hist_entry *he) \ 51 struct hist_entry *he) \ 58 static u64 he_get_acc_##_field(struct hist_entry *he) \ 65 struct hist_entry *he) \ 359 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in perf_gtk__show_hists() 414 struct hist_entry *he; in perf_gtk__add_hierarchy_entries() 425 he = rb_entry(node, struct hist_entry, rb_node); in perf_gtk__add_hierarchy_entries()
|
| /linux/tools/perf/ui/stdio/ |
| H A D | hist.c | 385 static size_t hist_entry_callchain__fprintf(struct hist_entry *he, in hist_entry_callchain__fprintf() 418 int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp, in __hist_entry__snprintf() 456 static int hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp) in hist_entry__snprintf() 461 static int hist_entry__hierarchy_fprintf(struct hist_entry *he, in hist_entry__hierarchy_fprintf() 542 static int hist_entry__block_fprintf(struct hist_entry *he, in hist_entry__block_fprintf() 566 static int hist_entry__individual_block_fprintf(struct hist_entry *he, in hist_entry__individual_block_fprintf() 585 static int hist_entry__fprintf(struct hist_entry *he, size_t size, in hist_entry__fprintf() 871 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hists__fprintf()
|