/external/linux-tools-perf/util/ |
sort.h | 50 * struct hist_entry - histogram entry 55 struct hist_entry { struct 78 struct hist_entry *pair; 102 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *); 103 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *); 104 int (*se_snprintf)(struct hist_entry *self, char *bf, size_t size, 115 extern size_t sort__thread_print(FILE *, struct hist_entry *, unsigned int); 116 extern size_t sort__comm_print(FILE *, struct hist_entry *, unsigned int) [all...] |
hist.h | 15 struct hist_entry; 61 struct hist_entry *__hists__add_entry(struct hists *self, 64 extern int64_t hist_entry__cmp(struct hist_entry *, struct hist_entry *); 65 extern int64_t hist_entry__collapse(struct hist_entry *, struct hist_entry *); 66 int hist_entry__fprintf(struct hist_entry *self, struct hists *hists, 69 int hist_entry__snprintf(struct hist_entry *self, char *bf, size_t size, 73 void hist_entry__free(struct hist_entry *); 84 int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr) [all...] |
sort.c | 18 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf, 20 static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf, 22 static int hist_entry__dso_snprintf(struct hist_entry *self, char *bf, 24 static int hist_entry__sym_snprintf(struct hist_entry *self, char *bf, 26 static int hist_entry__parent_snprintf(struct hist_entry *self, char *bf, 28 static int hist_entry__cpu_snprintf(struct hist_entry *self, char *bf, 102 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) 128 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf, 135 static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf [all...] |
hist.c | 47 static void hists__calc_col_len(struct hists *self, struct hist_entry *h) 73 static void hist_entry__add_cpumode_period(struct hist_entry *self, 98 static struct hist_entry *hist_entry__new(struct hist_entry *template) 101 struct hist_entry *self = malloc(sizeof(*self) + callchain_size); 115 static void hists__inc_nr_entries(struct hists *self, struct hist_entry *h) 130 struct hist_entry *__hists__add_entry(struct hists *self, 136 struct hist_entry *he; 137 struct hist_entry entry = { 154 he = rb_entry(parent, struct hist_entry, rb_node) [all...] |
/external/qemu/ |
readline.c | 180 if (rs->hist_entry == 0) 182 if (rs->hist_entry == -1) { 188 rs->hist_entry = idx; 190 rs->hist_entry--; 191 if (rs->hist_entry >= 0) { 193 rs->history[rs->hist_entry]); 200 if (rs->hist_entry == -1) 202 if (rs->hist_entry < READLINE_MAX_CMDS - 1 && 203 rs->history[++rs->hist_entry] != NULL) { 205 rs->history[rs->hist_entry]); 215 char *hist_entry, *new_entry; local [all...] |
readline.h | 26 int hist_entry; member in struct:ReadLineState
|
/external/linux-tools-perf/ |
builtin-diff.c | 70 struct hist_entry *he) 74 struct hist_entry *iter; 78 iter = rb_entry(parent, struct hist_entry, rb_node); 96 struct hist_entry *n = rb_entry(next, struct hist_entry, rb_node); 113 static struct hist_entry *hists__find_entry(struct hists *self, 114 struct hist_entry *he) 119 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node); 138 struct hist_entry *pos = rb_entry(nd, struct hist_entry, rb_node) [all...] |
builtin-annotate.c | 54 struct hist_entry *he; 111 static int hist_entry__tty_annotate(struct hist_entry *he, int evidx) 123 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); 158 * Since we have a hist_entry per IP for the same
|
builtin-report.c | 66 struct hist_entry *he;
|
/external/linux-tools-perf/util/ui/browsers/ |
hists.c | 25 struct hist_entry *he_selection; 31 /* 3 == +/- toggle symbol before actual hist_entry rendering */ 53 static char hist_entry__folded(const struct hist_entry *self) 175 static void hist_entry__init_have_children(struct hist_entry *self) 187 struct hist_entry *he = self->he_selection; 260 static void hist_entry__set_folding(struct hist_entry *self, bool unfold) 279 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); 317 struct hist_entry *h = rb_entry(self->b.top, 318 struct hist_entry, rb_node) [all...] |
annotate.c | 249 int hist_entry__tui_annotate(struct hist_entry *he, int evidx)
|