| /src/external/gpl3/gdb/dist/readline/readline/ |
| posixselect.h | 24 #if defined (FD_SET) && !defined (HAVE_SELECT)
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| posixselect.h | 24 #if defined (FD_SET) && !defined (HAVE_SELECT)
|
| /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/gpl2/xcvs/dist/lib/ |
| sunos57-select.c | 56 rpl_select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, 76 fd_set null_rfds, null_wfds; 109 FD_SET (fd, &null_rfds); 137 FD_SET (fd, &null_wfds); 211 FD_SET (fd, readfds); 217 FD_SET (fd, writefds);
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| 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)) {
|
| select_bug.c | 47 fd_set readfds; 56 FD_SET(fd, &readfds); 57 switch (select(fd + 1, &readfds, (fd_set *) 0, &readfds, &tv)) {
|
| /src/usr.sbin/faithd/ |
| tcp.c | 59 static fd_set readfds, writefds, exceptfds; 165 FD_SET(s_rcv, &exceptfds); 188 FD_SET(s_rcv, &readfds); 195 FD_SET(s_snd, &writefds); 203 fd_set oreadfds, owritefds, oexceptfds; 212 FD_SET(s_rcv, &readfds); 213 FD_SET(s_rcv, &exceptfds); 251 FD_SET(s_snd, &writefds); 288 FD_SET(s_snd, &writefds);
|
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| 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/ |
| 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/gcc/dist/libcc1/ |
| connection.cc | 72 fd_set read_set; 75 FD_SET (m_fd, &read_set); 77 FD_SET (m_aux_fd, &read_set);
|
| /src/external/gpl3/gcc.old/dist/libcc1/ |
| connection.cc | 72 fd_set read_set; 75 FD_SET (m_fd, &read_set); 77 FD_SET (m_aux_fd, &read_set);
|
| /src/external/gpl3/gdb/dist/readline/readline/examples/ |
| rlptytest.c | 169 fd_set rset; 177 /* Reset the fd_set, and watch for input from GDB or stdin */ 180 FD_SET(STDIN_FILENO, &rset); 181 FD_SET(slavefd, &rset); 182 FD_SET(masterfd, &rset);
|
| rl-callbacktest.c | 73 fd_set fds; 92 FD_SET (fileno (rl_instream), &fds);
|
| /src/external/gpl3/gdb.old/dist/readline/readline/examples/ |
| rlptytest.c | 169 fd_set rset; 177 /* Reset the fd_set, and watch for input from GDB or stdin */ 180 FD_SET(STDIN_FILENO, &rset); 181 FD_SET(slavefd, &rset); 182 FD_SET(masterfd, &rset);
|
| rl-callbacktest.c | 73 fd_set fds; 92 FD_SET (fileno (rl_instream), &fds);
|
| /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/sys/ |
| 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/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| net_write.c | 61 fd_set wfds; 65 FD_SET(fd, &wfds);
|
| /src/external/bsd/ipf/dist/samples/ |
| relay.c | 34 fd_set rfds, wfds; 51 FD_SET(rfd, &wfds); 53 FD_SET(ifd, &rfds); 55 FD_SET(ofd, &wfds); 57 FD_SET(rfd, &rfds);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| filter_fork_posix.c | 250 fd_set fds_in, fds_out, fds_error; 256 FD_SET(out, &fds_in); 257 FD_SET(out, &fds_error); 260 FD_SET(in, &fds_out); 261 FD_SET(in, &fds_error);
|
| /src/external/bsd/libbind/dist/isc/ |
| ev_files.c | 82 FD_SET(fd, &ctx->nonblockBefore); 138 /* Turn on the appropriate bits in the {rd,wr,ex}Next fd_set's. */ 140 FD_SET(fd, &ctx->rdNext); 142 FD_SET(fd, &ctx->wrNext); 144 FD_SET(fd, &ctx->exNext);
|
| /src/tests/lib/libc/sys/ |
| t_eventfd.c | 274 fd_set readfds, writefds, exceptfds; 306 FD_SET(efd, &readfds); 307 FD_SET(efd, &writefds); 308 FD_SET(efd, &exceptfds); 343 FD_SET(efd, &readfds); 344 FD_SET(efd, &writefds); 345 FD_SET(efd, &exceptfds); 373 fd_set selfds; 419 FD_SET(ctx->efd, &selfds); 434 FD_SET(ctx->efd, &selfds) [all...] |
| t_select.c | 113 fd_set rset; 115 FD_SET(fd, &rset); 224 fd_set readfds; 231 FD_SET(fd, &readfds);
|
| /src/tests/net/can/ |
| h_canutils.c | 98 fd_set rfds; 104 FD_SET(s, &rfds); 136 fd_set rfds; 142 FD_SET(s, &rfds);
|