Home
last modified time | relevance | path

Searched refs:exceptfds (Results 1 – 7 of 7) sorted by relevance

/openbsd/gnu/lib/libreadline/
H A Dinput.c174 fd_set readfds, exceptfds; in rl_gather_tyi() local
182 FD_ZERO (&exceptfds); in rl_gather_tyi()
184 FD_SET (tty, &exceptfds); in rl_gather_tyi()
187 result = select (tty + 1, &readfds, (fd_set *)NULL, &exceptfds, &timeout); in rl_gather_tyi()
267 fd_set readfds, exceptfds; in _rl_input_available() local
279 FD_ZERO (&exceptfds); in _rl_input_available()
281 FD_SET (tty, &exceptfds); in _rl_input_available()
284 return (select (tty + 1, &readfds, (fd_set *)NULL, &exceptfds, &timeout) > 0); in _rl_input_available()
/openbsd/lib/libc/sys/
H A Dw_select.c22 select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in select() argument
28 ret = HIDDEN(select)(nfds, readfds, writefds, exceptfds, timeout); in select()
H A Dw_pselect.c23 pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in pselect() argument
36 ret = HIDDEN(pselect)(nfds, readfds, writefds, exceptfds, timeout, in pselect()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dser-unix.c903 fd_set readfds, exceptfds; in ser_unix_wait_for() local
913 FD_ZERO (&exceptfds); in ser_unix_wait_for()
915 FD_SET (scb->fd, &exceptfds); in ser_unix_wait_for()
918 numfds = select (scb->fd + 1, &readfds, 0, &exceptfds, &tv); in ser_unix_wait_for()
920 numfds = select (scb->fd + 1, &readfds, 0, &exceptfds, 0); in ser_unix_wait_for()
/openbsd/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp1465 fd_set *exceptfds, struct timeval *timeout, in __dfsw_select() argument
1469 int ret = select(nfds, readfds, writefds, exceptfds, timeout); in __dfsw_select()
1478 if (exceptfds) { in __dfsw_select()
1479 dfsan_set_label(0, exceptfds, sizeof(fd_set)); in __dfsw_select()
1488 fd_set *exceptfds, struct timeval *timeout, in __dfso_select() argument
1495 return __dfsw_select(nfds, readfds, writefds, exceptfds, timeout, nfds_label, in __dfso_select()
/openbsd/gnu/usr.bin/perl/os2/
H A Dos2ish.h780 my_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) in my_select() argument
788 return select(nfds, readfds, writefds, exceptfds, timeout); in my_select()
/openbsd/gnu/usr.bin/perl/win32/
H A Dperlhost.h1519 PerlSockSelect(struct IPerlSock* piPerl, int nfds, char* readfds, char* writefds, char* exceptfds, … in PerlSockSelect() argument
1522 …in32_select(nfds, (Perl_fd_set*)readfds, (Perl_fd_set*)writefds, (Perl_fd_set*)exceptfds, timeout); in PerlSockSelect()