Searched refs:rfds (Results 26 - 37 of 37) sorted by relevance

12

/freebsd-11-stable/lib/libthr/thread/
H A Dthr_syscalls.c368 __thr_pselect(int count, fd_set *rfds, fd_set *wfds, fd_set *efds, argument
376 ret = __sys_pselect(count, rfds, wfds, efds, timo, mask);
/freebsd-11-stable/usr.sbin/bhyve/
H A Drfb.c702 fd_set rfds; local
715 FD_ZERO(&rfds);
716 FD_SET(cfd, &rfds);
720 err = select(cfd+1, &rfds, NULL, NULL, &tv);
/freebsd-11-stable/contrib/libpcap/rpcapd/
H A Ddaemon.c189 fd_set rfds; // set of socket descriptors we have to check local
291 FD_ZERO(&rfds);
296 FD_SET(pars.sockctrl, &rfds);
298 retval = select(pars.sockctrl + 1, &rfds, NULL, NULL, &tv);
525 FD_ZERO(&rfds);
530 FD_SET(pars.sockctrl, &rfds);
532 retval = select(pars.sockctrl + 1, &rfds, NULL, NULL, &tv);
/freebsd-11-stable/contrib/wpa/hostapd/
H A Dhostapd_cli.c1974 fd_set rfds; local
1983 FD_ZERO(&rfds);
1984 FD_SET(fd, &rfds);
1987 res = select(fd + 1, &rfds, NULL, NULL, &tv);
1993 if (FD_ISSET(fd, &rfds))
/freebsd-11-stable/lib/libtacplus/
H A Dtaclib.c513 fd_set rfds; local
515 FD_ZERO(&rfds);
516 FD_SET(h->fd, &rfds);
518 select(h->fd + 1, &rfds, NULL, NULL, &tv);
/freebsd-11-stable/sbin/ping/
H A Dping.c915 fd_set rfds; local
921 FD_ZERO(&rfds);
922 FD_SET(srecv, &rfds);
936 n = select(srecv + 1, &rfds, NULL, NULL, &timeout);
/freebsd-11-stable/contrib/bmake/
H A Djob.c3065 fd_set rfds, wfds;
3070 FD_ZERO(&rfds);
3078 FD_SET(fd[i].fd, &rfds);
3101 nselect = select(maxfd + 1, &rfds, &wfds, 0, tvp);
3108 if (FD_ISSET(fd[i].fd, &rfds))
3064 fd_set rfds, wfds; local
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-rpcap.c383 fd_set rfds; /* set of socket descriptors we have to check */ local
393 FD_ZERO(&rfds);
399 FD_SET(pr->rmt_sockdata, &rfds);
401 retval = select((int) pr->rmt_sockdata + 1, &rfds, NULL, NULL, &tv);
/freebsd-11-stable/lib/libc/resolv/
H A Dres_send.c1157 pselect(int nfds, void *rfds, void *wfds, void *efds, argument
1171 n = select(nfds, rfds, wfds, efds, tvp);
/freebsd-11-stable/sbin/ping6/
H A Dping6.c1096 fd_set rfds; local
1109 FD_ZERO(&rfds);
1110 FD_SET(s, &rfds);
1125 n = select(s + 1, &rfds, NULL, NULL, &timeout);
/freebsd-11-stable/contrib/ntp/
H A Dconfigure22730 fd_set rfds;
22735 FD_ZERO(&rfds);
22736 FD_SET(fildes[0], &rfds);
22739 i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
/freebsd-11-stable/contrib/ntp/sntp/
H A Dconfigure13404 fd_set rfds;
13409 FD_ZERO(&rfds);
13410 FD_SET(fildes[0], &rfds);
13413 i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);

Completed in 284 milliseconds

12