Searched defs:hist_entry (Results 1 - 3 of 3) sorted by relevance

/external/qemu/
H A Dreadline.h26 int hist_entry; member in struct:ReadLineState
H A Dreadline.c180 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...]
/external/linux-tools-perf/util/
H A Dsort.h50 * 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 *, unsigne
[all...]

Completed in 104 milliseconds