Home
last modified time | relevance | path

Searched refs:_delay (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/arm/include/
H A Dplatformvar.h92 _delay) \ argument
93 CTASSERT(_delay > 0); \
106 .delay_count = _delay, \
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dlib_options.c114 win->_delay = 0; in nodelay()
116 win->_delay = -1; in nodelay()
140 win->_delay = delay; in wtimeout()
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_window.c231 nwin->_delay = win->_delay; in dupwin()
H A Dlib_screen.c144 DATA(_delay, pINT),
583 nwin->_delay = tmp._delay; in NCURSES_SP_NAME()
H A Dlib_getch.c516 if (win->_notimeout || (win->_delay >= 0) || (IsCbreak(sp) > 1)) { in _nc_wgetch()
524 delay = win->_delay; in _nc_wgetch()
H A Dlib_newwin.c320 win->_delay = -1; in NCURSES_SP_NAME()
/freebsd/contrib/ncurses/include/
H A Dcurses.h.in529 int _delay; /* 0 = nodelay, <0 = blocking, >0 = delay */ member
1452 #define is_nodelay(win) (NCURSES_OK_ADDR(win) ? ((win)->_delay == 0) : FALSE)
1458 #define wgetdelay(win) (NCURSES_OK_ADDR(win) ? (win)->_delay : 0)
/freebsd/contrib/ncurses/
H A DNEWS4418 + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
15584 3) corrected usage of win->_delay value.