HomeSort by: relevance | last modified time | path
    Searched refs:FD_SETSIZE (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/sys/
fd_set.h 55 * such bit fields. Note: FD_SETSIZE may be defined by the user.
58 #ifndef FD_SETSIZE
59 #define FD_SETSIZE 256
63 #define __NFD_SIZE __NFD_LEN(FD_SETSIZE)
  /src/usr.sbin/faithd/
tcp.c 163 if (s_rcv >= FD_SETSIZE)
183 if (s_snd >= FD_SETSIZE)
186 if (s_rcv >= FD_SETSIZE)
193 if (s_snd >= FD_SETSIZE)
210 if (s_rcv >= FD_SETSIZE)
246 if (s_rcv >= FD_SETSIZE)
249 if (s_snd >= FD_SETSIZE)
283 if (s_rcv >= FD_SETSIZE)
286 if (s_snd >= FD_SETSIZE)
  /src/regress/sys/kern/select/
select.c 29 #define FD_SETSIZE 65536
97 if (fd > FD_SETSIZE) {
99 "fd(%d) > FD_SETSIZE(%d)\n",
100 fd, FD_SETSIZE);
  /src/lib/libc/rpc/
svc_fdset.c 186 fds->fdnum = FD_SETSIZE;
213 pfd = realloc(fds->fdp, (fds->fdnum + FD_SETSIZE) * sizeof(*fds->fdp));
217 svc_pollfd_init(pfd + fds->fdnum, FD_SETSIZE);
221 fds->fdnum += FD_SETSIZE;
264 fd += FD_SETSIZE;
svc.c 671 svc_getreqset2(readfds, FD_SETSIZE);
  /src/tests/lib/libc/sys/
t_select.c 223 for (fd = 0; fd < FD_SETSIZE; fd++) {
  /src/usr.sbin/mrouted/
main.c 255 if (igmp_socket >= FD_SETSIZE)
260 if (ihandlers[i].fd >= FD_SETSIZE)
  /src/usr.sbin/sysinst/
run.c 534 i = select(FD_SETSIZE, &read_fd_set, NULL, NULL, &tmo);
546 } else for (i = 0; i < FD_SETSIZE; ++i) {
  /src/lib/libc/isc/
eventlib_p.h 232 evFile *fdTable[FD_SETSIZE];
  /src/usr.sbin/sdpd/
server.c 106 srv->fdidx = calloc(FD_SETSIZE, sizeof(fd_idx_t));
365 if (cfd >= FD_SETSIZE) {
  /src/sys/compat/ultrix/
ultrix_misc.c 275 if (SCARG(uap, nd) > FD_SETSIZE)
276 SCARG(&ap, nd) = FD_SETSIZE;
  /src/sys/kern/
sys_select.c 383 char smallbits[howmany(FD_SETSIZE, NFDBITS) *
398 * The additional FD_SETSIZE allows for cases where the limit
407 if (nd > nf + FD_SETSIZE &&
408 nd > curlwp->l_proc->p_rlimit[RLIMIT_NOFILE].rlim_max + FD_SETSIZE)
  /src/lib/libc/resolv/
res_send.c 104 #include "fd_setsize.h"
168 static const int highestFD = FD_SETSIZE - 1;
  /src/usr.bin/make/
job.c 2739 if (maxfd >= FD_SETSIZE) {
2741 "recompile with a larger FD_SETSIZE.");
  /src/lib/librumphijack/
hijack.c 449 /* default FD_SETSIZE is 256 ==> default fdoff is 128 */
450 static int hijack_fdoff = FD_SETSIZE/2;

Completed in 24 milliseconds