Searched defs:maxfd (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dos.c63 int maxfd; local
70 maxfd = pipe_fd > fd ? pipe_fd : fd;
78 n = select(maxfd + 1, &read_fds, NULL, NULL, tvp);
98 int maxfd; local
103 maxfd = 0;
106 if (fds[i] > maxfd)
107 maxfd = fds[i];
110 if (pipe_fd > maxfd)
111 maxfd = pipe_fd;
120 n = select(maxfd
[all...]
/bind-9.11.3/lib/isc/unix/
H A Dentropy.c385 int maxfd, fd; local
390 maxfd = -1;
399 maxfd = ISC_MAX(maxfd, fd);
412 maxfd = ISC_MAX(maxfd, fd);
417 maxfd = ISC_MAX(maxfd, fd);
426 if (maxfd < 0)
429 cc = select(maxfd
[all...]
H A Dsocket.c131 int maxfd; member in struct:isc_socketwait
440 int maxfd; member in struct:isc__socketmgr
2211 * update manager->maxfd here (XXX: this should be implemented more
2216 if (manager->maxfd == fd) {
2219 manager->maxfd = 0;
2225 manager->maxfd = i;
2232 if (manager->maxfd < manager->pipe_fds[0])
2233 manager->maxfd = manager->pipe_fds[0];
3035 if (manager->maxfd < sock->fd)
3036 manager->maxfd
4189 process_fds(isc__socketmgr_t *manager, int maxfd, fd_set *readfds, fd_set *writefds) argument
4274 int maxfd; local
[all...]
/bind-9.11.3/contrib/queryperf/
H A Dqueryperf.c1720 int maxfd = -1; local
1726 maxfd = socket4;
1730 if (maxfd == -1 || maxfd < socket6)
1731 maxfd = socket6;
1742 retval = select(maxfd + 1, &read_fds, NULL, NULL, &tv);

Completed in 25 milliseconds