Lines Matching defs:delay
44 * Set the getch() delay for stdscr.
47 timeout(int delay)
50 wtimeout(stdscr, delay);
57 * Set the getch() delay for a window.
60 wtimeout(WINDOW *win, int delay)
66 if (delay < 0)
67 win->delay = -1;
68 else if (!delay)
69 win->delay = delay;
75 if (delay > 25500)
76 win->delay = 255;
78 win->delay = (delay - 1)/ 100 + 1;