HomeSort by relevance Sort by last modified time
    Searched refs:READLINE_MAX_CMDS (Results 1 - 2 of 2) sorted by null

  /external/qemu/
readline.h 7 #define READLINE_MAX_CMDS 64
25 char *history[READLINE_MAX_CMDS];
readline.c 184 for (idx = 0; idx < READLINE_MAX_CMDS; idx++) {
202 if (rs->hist_entry < READLINE_MAX_CMDS - 1 &&
230 for (idx = 0; idx < READLINE_MAX_CMDS; idx++) {
239 (READLINE_MAX_CMDS - idx + 1) * sizeof(char *));
240 rs->history[READLINE_MAX_CMDS - 1] = NULL;
241 for (; idx < READLINE_MAX_CMDS; idx++) {
248 if (idx == READLINE_MAX_CMDS) {
252 (READLINE_MAX_CMDS - 1) * sizeof(char *));
253 rs->history[READLINE_MAX_CMDS - 1] = NULL;
254 idx = READLINE_MAX_CMDS - 1
    [all...]

Completed in 163 milliseconds