| /src/sys/compat/linux/common/ |
| linux_oldselect.h | 43 fd_set *readfds; 44 fd_set *writefds; 45 fd_set *exceptfds;
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| gdb_select.h | 33 extern int gdb_select (int n, fd_set *readfds, fd_set *writefds, 34 fd_set *exceptfds, struct timeval *timeout); 46 fd_set *readfds, 47 fd_set *writefds, 48 fd_set *exceptfds,
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| gdb_select.h | 33 extern int gdb_select (int n, fd_set *readfds, fd_set *writefds, 34 fd_set *exceptfds, struct timeval *timeout); 46 fd_set *readfds, 47 fd_set *writefds, 48 fd_set *exceptfds,
|
| /src/sys/compat/sys/ |
| select.h | 40 #include <sys/fd_set.h> 48 int pselect(int, fd_set * __restrict, fd_set * __restrict, 49 fd_set * __restrict, const struct timespec50 * __restrict, 51 int select(int, fd_set * __restrict, fd_set * __restrict, 52 fd_set * __restrict, struct timeval50 * __restrict); 53 int __pselect50(int, fd_set * __restrict, fd_set * __restrict, 54 fd_set * __restrict, const struct timespec * __restrict [all...] |
| /src/sys/sys/ |
| select.h | 39 #include <sys/fd_set.h> 52 int selcommon(register_t *, int, fd_set *, fd_set *, fd_set *, 69 int pselect(int, fd_set * __restrict, fd_set * __restrict, 70 fd_set * __restrict, const struct timespec * __restrict, 72 int select(int, fd_set * __restrict, fd_set * __restrict, 73 fd_set * __restrict, struct timeval * __restrict) __RENAME(__select50) [all...] |
| fd_set.h | 1 /* $NetBSD: fd_set.h,v 1.8 2024/05/12 10:34:56 rillig Exp $ */ 66 typedef struct fd_set { struct 68 } fd_set; typedef in typeref:struct:fd_set 70 #define FD_SET(n, p) \ 80 fd_set *__fds = (p); \ 99 fd_set *__f = (f), *__t = (t); \
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/ |
| select.d | 41 fd_set 43 void FD_CLR(int fd, fd_set* fdset); 44 int FD_ISSET(int fd, const(fd_set)* fdset); 45 void FD_SET(int fd, fd_set* fdset); 46 void FD_ZERO(fd_set* fdset); 50 int pselect(int, fd_set*, fd_set*, fd_set*, const scope timespec*, const scope sigset_t*); 51 int select(int, fd_set*, fd_set*, fd_set*, timeval*) [all...] |
| /src/sys/arch/zaurus/stand/zboot/ |
| unixdev.h | 61 int uselect(int, fd_set *, fd_set *, fd_set *, struct linux_timeval *);
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| doze.c | 54 while (select(0, (fd_set *) 0, (fd_set *) 0, (fd_set *) 0, &tv) < 0)
|
| fifo_rdonly_bug.c | 77 fd_set read_fds; 78 fd_set except_fds; 104 FD_SET(fd, &read_fds); 106 FD_SET(fd, &except_fds); 110 switch (select(fd + 1, &read_fds, (fd_set *) 0, &except_fds, &tv)) {
|
| fifo_rdwr_bug.c | 53 fd_set read_fds; 54 fd_set except_fds; 71 FD_SET(fd, &read_fds); 73 FD_SET(fd, &except_fds); 77 switch (select(fd + 1, &read_fds, (fd_set *) 0, &except_fds, &tv)) {
|
| /src/external/bsd/ntp/dist/include/ |
| ntp_select.h | 4 * Not all machines define FD_SET in sys/types.h 10 /* Could say: !defined(FD_SET) && defined(HAVE_SYS_SELECT_H) */ 11 /* except FD_SET can legitimately be a typedef... */ 17 extern int select(int width, fd_set *pReadFds, fd_set *pWriteFds, 18 fd_set *pExceptFds, struct timeval *pTimeOut); 22 #if !defined(FD_SET) 25 # define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS))) 34 } fd_set; typedef in typeref:struct:__anon7372
|
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| sys_select.in.h | 125 /* Get the 'struct timeval' and 'fd_set' types and the FD_* macros 134 Get the 'fd_set' type. 160 rpl_fd_isset (SOCKET fd, fd_set * set) 271 (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, 274 (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, 279 (int, fd_set *restrict, fd_set *restrict, fd_set *restrict [all...] |
| select.c | 267 rpl_select (int nfds, fd_set *rfds, fd_set *wfds, fd_set *xfds, 274 fd_set handle_rfds, handle_wfds, handle_xfds; 327 rfds = (fd_set *) alloca (sizeof (fd_set)); 342 wfds = (fd_set *) alloca (sizeof (fd_set)); 352 xfds = (fd_set *) alloca (sizeof (fd_set)); [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| sys_select.in.h | 125 /* Get the 'struct timeval' and 'fd_set' types and the FD_* macros 134 Get the 'fd_set' type. 160 rpl_fd_isset (SOCKET fd, fd_set * set) 271 (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, 274 (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, 279 (int, fd_set *restrict, fd_set *restrict, fd_set *restrict [all...] |
| select.c | 267 rpl_select (int nfds, fd_set *rfds, fd_set *wfds, fd_set *xfds, 274 fd_set handle_rfds, handle_wfds, handle_xfds; 327 rfds = (fd_set *) alloca (sizeof (fd_set)); 342 wfds = (fd_set *) alloca (sizeof (fd_set)); 352 xfds = (fd_set *) alloca (sizeof (fd_set)); [all...] |
| /src/external/bsd/nsd/dist/compat/ |
| pselect.c | 19 fd_set *readfds, 20 fd_set *writefds, 21 fd_set *exceptfds,
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/ |
| net.h | 156 * Fix the FD_SET and FD_CLR Macros to properly cast 161 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \ 162 if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET) fd) { \ 163 while (__i < ((fd_set FAR *)(set))->fd_count-1) { \ 164 ((fd_set FAR *)(set))->fd_array[__i] = \ 165 ((fd_set FAR *)(set))->fd_array[__i+1]; \ 168 ((fd_set FAR *)(set))->fd_count--; \ 174 #undef FD_SET 175 #define FD_SET(fd, set) do { \ 177 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| posix-hdep.c | 28 gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
|
| /src/external/gpl3/gdb/dist/gdb/ |
| posix-hdep.c | 28 gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
|
| /src/lib/libc/compat/sys/ |
| compat_select.c | 78 select(int nfds, fd_set * __restrict readfds, fd_set * __restrict writefds, 79 fd_set * __restrict exceptfds, struct timeval50 * __restrict tim50) 91 pselect(int nfds, fd_set * __restrict readfds, fd_set * __restrict writefds, 92 fd_set * __restrict exceptfds, const struct timespec50 *__restrict tim50,
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| parens.c | 120 fd_set readfds; 132 FD_SET (fileno (rl_instream), &readfds); 139 ready = _rl_timeout_select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer, NULL); 141 ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| parens.c | 120 fd_set readfds; 132 FD_SET (fileno (rl_instream), &readfds); 139 ready = _rl_timeout_select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer, NULL); 141 ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
|
| /src/usr.sbin/mopd/common/ |
| loop-linux2.c | 98 fd_set fds, listeners; 121 FD_SET(ii->fd, &fds); 128 if (select(maxfd + 1, &listeners, (fd_set *) 0, 129 (fd_set *) 0, (struct timeval *) 0) < 0) {
|
| /src/crypto/external/apache2/openssl/dist/ssl/rio/ |
| poll_builder.h | 29 fd_set rfd, wfd, efd;
|