HomeSort by: relevance | last modified time | path
    Searched refs:ESCDELAY (Results 1 - 7 of 7) sorted by relevancy

  /src/lib/libcurses/
setterm.c 105 if ((p = getenv("ESCDELAY")) != NULL)
106 screen->ESCDELAY = (int)strtol(p, NULL, 0);
108 screen->ESCDELAY = ESCDELAY_DEFAULT;
123 ESCDELAY = screen->ESCDELAY;
247 ESCDELAY = screen->ESCDELAY;
screen.c 78 old_screen->ESCDELAY = ESCDELAY;
95 ESCDELAY = new->ESCDELAY;
curses.c 70 int ESCDELAY; /* ms delay between keys for esc seq */
get_wch.c 129 if (__timeout(to ? (ESCDELAY / 100) : delay)
133 if (to && (__timeout(ESCDELAY / 100) == ERR))
173 if (__timeout(to ? (ESCDELAY / 100) : delay)
177 if (to && (__timeout(ESCDELAY / 100) == ERR))
getch.c 584 if (__timeout(to ? (ESCDELAY / 100) : delay)
588 if (to && (__timeout(ESCDELAY / 100) == ERR))
983 set_escdelay(int escdelay)
988 _cursesi_screen->ESCDELAY = escdelay;
989 ESCDELAY = escdelay;
curses_private.h 223 int ESCDELAY; /* Delay between keys in esc seq's. */
curses.h 417 extern int ESCDELAY; /* Delay between keys in esc seq's. */

Completed in 15 milliseconds