Searched refs:rfds (Results 1 - 7 of 7) sorted by relevance

/haiku-fatelf/src/bin/coreutils/lib/
H A Dselect.c232 rpl_select (int nfds, fd_set *rfds, fd_set *wfds, fd_set *xfds, argument
255 if (!rfds && !wfds && !xfds)
277 if (rfds)
278 for (i = 0; i < rfds->fd_count; i++)
280 fd = rfds->fd_array[i];
290 rfds = (fd_set *) alloca (sizeof (fd_set));
318 FD_ZERO (rfds);
347 FD_SET ((SOCKET) h, rfds);
388 memcpy (&handle_rfds, rfds, sizeof (fd_set));
420 FD_ZERO (rfds);
478 rpl_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *xfds, struct timeval *timeout) argument
[all...]
/haiku-fatelf/src/bin/network/atftpd/
H A Dtftp_io.c211 fd_set rfds; local
236 FD_ZERO(&rfds);
237 FD_SET(sock1, &rfds);
239 FD_SET(sock2, &rfds);
242 result = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
256 if (FD_ISSET(sock1, &rfds))
264 if ((sock2 > -1) && (FD_ISSET(sock2, &rfds)))
H A Dtftpd.c151 fd_set rfds; /* for select */ local
364 FD_ZERO(&rfds);
365 FD_SET(0, &rfds);
395 select(FD_SETSIZE, &rfds, NULL, NULL, NULL);
397 select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
410 if (FD_ISSET(0, &rfds) && (!tftpd_cancel))
H A Dtftpd_mtftp.c343 fd_set rfds; /* for select */ local
381 FD_ZERO(&rfds);
382 FD_SET(sockfd, &rfds);
384 select(sockfd + 1, &rfds, NULL, NULL, NULL);
386 if (FD_ISSET(sockfd, &rfds) && (!tftpd_cancel))
/haiku-fatelf/src/bin/gdb/gdb/osf-share/
H A Dcma_tcb_defs.h82 cma__t_file_mask *rfds; member in struct:CMA__T_TCB_SELECT
/haiku-fatelf/src/kits/network/libbind/isc/
H A Deventlib.c736 pselect(int nfds, void *rfds, void *wfds, void *efds, argument
763 n = select(nfds, rfds, wfds, efds, tvp);
766 * rfds, wfds, and efds should all be from the same evContext_p,
770 if (rfds != NULL)
771 ctx = ((__evEmulMask *)rfds)->ctx;
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_send.c1095 pselect(int nfds, void *rfds, void *wfds, void *efds, argument
1109 n = select(nfds, rfds, wfds, efds, tvp);

Completed in 89 milliseconds