| /src/games/hunt/huntd/ |
| extern.c | 48 struct pollfd fdset[3+MAXPL+MAXMON]; variable in typeref:struct:pollfd
|
| /src/sys/arch/zaurus/stand/zboot/ |
| unixcons.c | 128 fd_set fdset; local 135 FD_ZERO(&fdset); 138 FD_SET(fd, &fdset); 140 n = uselect(nfds, &fdset, NULL, NULL, &tv); 147 if (FD_ISSET(fd, &fdset)) {
|
| /src/usr.sbin/sdpd/ |
| server.c | 102 FD_ZERO(&srv->fdset); 204 FD_SET(fd, &srv->fdset); 264 FD_SET(fd, &srv->fdset); 307 fd_set fdset; local 312 memcpy(&fdset, &srv->fdset, sizeof(fdset)); 313 n = select(srv->fdmax + 1, &fdset, NULL, NULL, NULL); 319 srv->fdmax + 1, &fdset, strerror(errno), errno); 325 if (!FD_ISSET(fd, &fdset)) [all...] |
| sdpd.h | 115 fd_set fdset; /* current descriptor set */ member in struct:server
|
| /src/lib/libc/rpc/ |
| svc_fdset.c | 64 fd_set *fdset; member in struct:svc_fdset 102 fprintf(stderr, "%p[%d] fd_set<", fds->fdset, fds->fdmax); 104 if (!FD_ISSET(i, fds->fdset)) 146 while (fds->fdmax >= 0 && !FD_ISSET(fds->fdmax, fds->fdset)) 151 svc_fdset = *(__fd_set_256 *)(void *)__svc_fdset.fdset; 165 free(fds->fdset); 259 if (fds->fdset && fd < fds->fdsize) { 266 char *newfdset = realloc(fds->fdset, __NFD_BYTES(fd)); 274 fds->fdset = (void *)newfdset; 303 DPRINTF("switching to %p", fds->fdset); [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| changepw.c | 590 fd_set fdset; local 620 FD_ZERO(&fdset); 621 FD_SET(sock, &fdset); 625 ret = select (sock + 1, &fdset, NULL, NULL, &tv);
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_script.c | 225 fd_set fdset; local 232 FD_ZERO(&fdset); 233 FD_SET(master, &fdset); 234 switch (select(master + 1, &fdset, NULL, NULL, &tv)) { 337 sscr_check_input(SCR *sp, fd_set *fdset, int maxfd) 345 loop: memcpy(&rdfd, fdset, sizeof(fd_set));
|
| /src/crypto/external/bsd/heimdal/dist/kpasswd/ |
| kpasswdd.c | 799 fd_set fdset = real_fdset; local 801 retx = select(maxfd + 1, &fdset, NULL, NULL, NULL); 809 if (FD_ISSET(sockets[i], &fdset)) {
|