Home
last modified time | relevance | path

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

/mirbsd/src/gnu/usr.bin/cvs/lib/
Dsunos57-select.c60 rpl_select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in rpl_select() argument
91 bool isexcept = (exceptfds && FD_ISSET (fd, exceptfds)); in rpl_select()
163 ret = select (maxfd + 1, readfds, writefds, exceptfds, &ztime); in rpl_select()
171 if (exceptfds) in rpl_select()
172 FD_ZERO (exceptfds); in rpl_select()
179 ret = select (maxfd + 1, readfds, writefds, exceptfds, timeout); in rpl_select()
229 ret = select (nfds, readfds, writefds, exceptfds, timeout); in rpl_select()
/mirbsd/src/usr.sbin/faithd/
Dtcp.c58 static fd_set readfds, writefds, exceptfds; variable
166 FD_SET(s_rcv, &exceptfds); in send_data()
208 FD_ZERO(&exceptfds); in relay()
210 oreadfds = readfds; owritefds = writefds; oexceptfds = exceptfds; in relay()
214 FD_SET(s_rcv, &exceptfds); in relay()
223 oexceptfds = exceptfds; in relay()
224 error = select(maxfd + 1, &readfds, &writefds, &exceptfds, &tv); in relay()
232 exceptfds = oexceptfds; in relay()
240 if (FD_ISSET(s_rcv, &exceptfds)) { in relay()
249 FD_CLR(s_rcv, &exceptfds); in relay()
/mirbsd/src/lib/libpthread/uthread/
Duthread_select.c55 fd_set * exceptfds, struct timeval * timeout) in select() argument
92 if (numfds && (readfds || writefds || exceptfds)) { in select()
96 emask = exceptfds ? exceptfds->fds_bits[i] : 0; in select()
139 emask = exceptfds ? exceptfds->fds_bits[i] : 0; in select()
219 if (exceptfds != NULL) { in select()
220 if (FD_ISSET(data.fds[i].fd, exceptfds)) { in select()
226 exceptfds); in select()
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dser-base.c190 fd_set readfds, exceptfds; in ser_base_wait_for() local
200 FD_ZERO (&exceptfds); in ser_base_wait_for()
202 FD_SET (scb->fd, &exceptfds); in ser_base_wait_for()
205 numfds = select (scb->fd + 1, &readfds, 0, &exceptfds, &tv); in ser_base_wait_for()
207 numfds = select (scb->fd + 1, &readfds, 0, &exceptfds, 0); in ser_base_wait_for()
Devent-loop.c741 gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in gdb_select() argument
804 FD_ZERO (exceptfds); in gdb_select()
808 return select (n, readfds, writefds, exceptfds, timeout); in gdb_select()
/mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/
DHTTCP.c51 fd_set * exceptfds,
2360 fd_set * exceptfds, in BSDselect() argument
2367 rval = Rselect(nfds, readfds, writefds, exceptfds, select_timeout); in BSDselect()
2370 rval = select(nfds, readfds, writefds, exceptfds, select_timeout); in BSDselect()
2381 if (exceptfds != NULL) in BSDselect()
2382 FD_ZERO(exceptfds); in BSDselect()
2391 if ((exceptfds != NULL) && FD_ISSET(i, exceptfds)) in BSDselect()
/mirbsd/src/sys/compat/linux/
Dlinux_types.h122 fd_set *exceptfds; member
Dlinux_misc.c1161 ls.exceptfds, ls.timeout);
1184 SCARG(uap, writefds), SCARG(uap, exceptfds), SCARG(uap, timeout));
1194 linux_select1(p, retval, nfds, readfds, writefds, exceptfds, timeout) in linux_select1() argument
1198 fd_set *readfds, *writefds, *exceptfds;
1213 SCARG(&bsa, ex) = exceptfds;
Dlinux_syscallargs.h374 syscallarg(fd_set *) exceptfds;
/mirbsd/src/gnu/usr.bin/perl/os2/
Dos2ish.h781 my_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) in my_select() argument
789 return select(nfds, readfds, writefds, exceptfds, timeout); in my_select()
/mirbsd/src/gnu/usr.bin/perl/NetWare/
Dnwperlsys.h1259 PerlSockSelect(struct IPerlSock* piPerl, int nfds, char* readfds, char* writefds, char* exceptfds, … in PerlSockSelect() argument
1261 return nw_select(nfds, (fd_set*) readfds, (fd_set*) writefds, (fd_set*) exceptfds, timeout); in PerlSockSelect()
Dnwperlhost.h1199 PerlSockSelect(struct IPerlSock* piPerl, int nfds, char* readfds, char* writefds, char* exceptfds, … in PerlSockSelect() argument
1201 return nw_select(nfds, (fd_set*) readfds, (fd_set*) writefds, (fd_set*) exceptfds, timeout); in PerlSockSelect()
/mirbsd/src/gnu/usr.bin/perl/win32/
Dperlhost.h1390 PerlSockSelect(struct IPerlSock* piPerl, int nfds, char* readfds, char* writefds, char* exceptfds, … in PerlSockSelect() argument
1392 …in32_select(nfds, (Perl_fd_set*)readfds, (Perl_fd_set*)writefds, (Perl_fd_set*)exceptfds, timeout); in PerlSockSelect()
/mirbsd/src/gnu/usr.bin/perl/wince/
Dperlhost.h1398 PerlSockSelect(struct IPerlSock* piPerl, int nfds, char* readfds, char* writefds, char* exceptfds, … in PerlSockSelect() argument
1400 …in32_select(nfds, (Perl_fd_set*)readfds, (Perl_fd_set*)writefds, (Perl_fd_set*)exceptfds, timeout); in PerlSockSelect()
/mirbsd/src/gnu/usr.bin/lynx/src/
DLYUtils.c144 fd_set * exceptfds, struct timeval *timeout);