Searched refs:FD_SETSIZE (Results 1 - 25 of 102) sorted by relevance

12345

/macosx-10.10.1/xnu-2782.1.97/bsd/sys/_types/
H A D_fd_setsize.h28 #ifndef FD_SETSIZE
29 #define FD_SETSIZE __DARWIN_FD_SETSIZE macro
30 #endif /* FD_SETSIZE */
H A D_fd_def.h36 #ifdef FD_SETSIZE
37 #define __DARWIN_FD_SETSIZE FD_SETSIZE
38 #else /* !FD_SETSIZE */
40 #endif /* FD_SETSIZE */
/macosx-10.10.1/Libinfo-459/rpc.subproj/
H A Drpc_dtablesize.c73 #ifdef FD_SETSIZE
75 if (size > FD_SETSIZE)
76 size = FD_SETSIZE;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dfdset.h19 * tweaking of FD_SETSIZE is done early enough to be effective.
25 #if !defined( OPENLDAP_FD_SETSIZE ) && !defined( FD_SETSIZE )
38 # define FD_SETSIZE OPENLDAP_FD_SETSIZE macro
/macosx-10.10.1/ntp-92/include/
H A Dntif.h57 #ifdef FD_SETSIZE
58 #undef FD_SETSIZE macro
60 #define FD_SETSIZE 512 macro
H A Dntp_select.h22 #define FD_SETSIZE 32 macro
/macosx-10.10.1/emacs-93/emacs/src/
H A Dw32.h29 #define FD_SETSIZE 64 macro
31 unsigned int bits[FD_SETSIZE / 32];
37 if ((n) < FD_SETSIZE) { \
43 if ((n) < FD_SETSIZE) { \
47 #define FD_ISSET(n, p) ((n) < FD_SETSIZE ? ((p)->bits[(n)/32] & (1 << (n)%32)) : 0)
79 #define MAXDESC FD_SETSIZE
H A Dsysselect.h33 #ifdef FD_SETSIZE
34 #define MAXDESC FD_SETSIZE
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Ddetach.c62 nbits = FD_SETSIZE;
65 #ifdef FD_SETSIZE
66 if ( nbits > FD_SETSIZE ) {
67 nbits = FD_SETSIZE;
69 #endif /* FD_SETSIZE */
/macosx-10.10.1/remote_cmds-47/telnet.tproj/
H A Dfdset.h42 #ifndef FD_SETSIZE
/macosx-10.10.1/ruby-106/ruby/ext/-test-/win32/fd_setsize/
H A Dfd_setsize.c1 #undef FD_SETSIZE macro
3 #define FD_SETSIZE 32 macro
39 for (i = 0; i < FD_SETSIZE * 2; i++) {
42 if (set.fd_count > FD_SETSIZE) {
/macosx-10.10.1/tcl-105/tk/tk/macosx/
H A DtkMacOSXPort.h97 #ifndef FD_SETSIZE
99 # define FD_SETSIZE OPEN_MAX macro
101 # define FD_SETSIZE 256 macro
110 #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
/macosx-10.10.1/tcl-105/tk84/tk/macosx/
H A DtkMacOSXPort.h94 #ifndef FD_SETSIZE
96 # define FD_SETSIZE OPEN_MAX macro
98 # define FD_SETSIZE 256 macro
107 #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dpoll_fd.c51 /* best effort is made to handle descriptors >=FD_SETSIZE.
162 if (FD_SETSIZE <= fd) {
163 if ((temp_fd = dup(fd)) < 0 || temp_fd >= FD_SETSIZE)
164 msg_fatal("descriptor %d does not fit FD_SETSIZE %d", fd, FD_SETSIZE);
/macosx-10.10.1/OpenSSL098-52/src/crypto/rand/
H A Drand_unix.c132 #ifndef FD_SETSIZE
133 # define FD_SETSIZE (8*sizeof(fd_set)) macro
235 if (FD_SETSIZE > 0 && (unsigned)fd >= FD_SETSIZE)
/macosx-10.10.1/tcl-105/tk/tk/unix/
H A DtkUnixPort.h110 #ifndef FD_SETSIZE
112 # define FD_SETSIZE OPEN_MAX macro
114 # define FD_SETSIZE 256 macro
123 #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
/macosx-10.10.1/tcl-105/tk84/tk/unix/
H A DtkUnixPort.h107 #ifndef FD_SETSIZE
109 # define FD_SETSIZE OPEN_MAX macro
111 # define FD_SETSIZE 256 macro
120 #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
/macosx-10.10.1/OpenSSL098-52/src/apps/
H A Ds_apps.h130 #ifndef FD_SETSIZE
131 #define FD_SETSIZE MAX_NOFILE macro
132 #endif /* FD_SETSIZE */
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib518.c37 #ifndef FD_SETSIZE
38 #error "this test requires FD_SETSIZE"
42 #define NUM_OPEN (FD_SETSIZE + 10)
149 fprintf(stderr, "test518 FD_SETSIZE: %d\n", FD_SETSIZE);
217 * when more than FD_SETSIZE file descriptors are open.
219 * open more than FD_SETSIZE file descriptors then test
388 * greater than FD_SETSIZE. In any case, macro VERIFY_SOCK
396 num_open.rlim_cur = FD_SETSIZE - SAFETY_MARGIN;
398 sprintf(strbuff, "select limit is FD_SETSIZE
[all...]
/macosx-10.10.1/screen-22/screen/
H A Dsched.c173 for (nsel = 0; nsel < FD_SETSIZE; nsel++)
178 for (nsel = 0; nsel < FD_SETSIZE; nsel++)
184 nsel = select(FD_SETSIZE, &r, &w, (fd_set *)0, timeoutev ? &timeout : (struct timeval *) 0);
216 nsel = 2 * FD_SETSIZE;
273 if (select(FD_SETSIZE, &r, &w, (fd_set *)0, &tv) == -1)
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/telnet/
H A Dnetwork.c80 if (net >= FD_SETSIZE)
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Dexcallback.c127 if( select(FD_SETSIZE, &fds, NULL, NULL, NULL) < 0) {
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dselect.h97 /* Winsock and TPF sockets are not in range [0..FD_SETSIZE-1], which
104 #define VALID_SOCK(s) (((s) >= 0) && ((s) < FD_SETSIZE))
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixPort.h414 #ifndef FD_SETSIZE
416 # define FD_SETSIZE OPEN_MAX macro
418 # define FD_SETSIZE 256 macro
420 #endif /* FD_SETSIZE */
427 #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dselect-base.c41 * select stub, return error if nfds > FD_SETSIZE
72 if (nfds > FD_SETSIZE) {

Completed in 570 milliseconds

12345