HomeSort by relevance Sort by last modified time
    Searched defs:hist_entry (Results 1 - 3 of 3) sorted by null

  /external/qemu/
readline.h 26 int hist_entry; member in struct:ReadLineState
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...]
  /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...]

Completed in 57 milliseconds