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

12

/freebsd-11.0-release/usr.sbin/bhyve/
H A Drfb.c691 fd_set rfds; local
704 FD_ZERO(&rfds);
705 FD_SET(cfd, &rfds);
709 err = select(cfd+1, &rfds, NULL, NULL, &tv);
/freebsd-11.0-release/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.0-release/sbin/ping/
H A Dping.c914 fd_set rfds; local
920 FD_ZERO(&rfds);
921 FD_SET(srecv, &rfds);
935 n = select(srecv + 1, &rfds, NULL, NULL, &timeout);
/freebsd-11.0-release/contrib/bmake/
H A Djob.c3029 fd_set rfds, wfds;
3034 FD_ZERO(&rfds);
3042 FD_SET(fd[i].fd, &rfds);
3065 nselect = select(maxfd + 1, &rfds, &wfds, 0, tvp);
3072 if (FD_ISSET(fd[i].fd, &rfds))
3028 fd_set rfds, wfds; local
/freebsd-11.0-release/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.0-release/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.0-release/contrib/ntp/
H A Dconfigure22728 fd_set rfds;
22733 FD_ZERO(&rfds);
22734 FD_SET(fildes[0], &rfds);
22737 i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
/freebsd-11.0-release/contrib/ntp/sntp/
H A Dconfigure13406 fd_set rfds;
13411 FD_ZERO(&rfds);
13412 FD_SET(fildes[0], &rfds);
13415 i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);

Completed in 175 milliseconds

12