Searched refs:FD_ISSET (Results 1 - 25 of 178) sorted by relevance

12345678

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/_types/
H A D_fd_isset.h28 #ifndef FD_ISSET
29 #define FD_ISSET(n, p) __DARWIN_FD_ISSET(n, p) macro
30 #endif /* FD_ISSET */
/macosx-10.9.5/remote_cmds-41.90.1/telnet.tproj/
H A Dfdset.h46 #define FD_ISSET(n, p) ((p)->fds_bits[0] & (1<<(n))) macro
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dfdsel.h64 bool operator [] (int fd) const { return FD_ISSET(fd, (fd_set *)mUseBits); }
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dfdsel.h64 bool operator [] (int fd) const { return FD_ISSET(fd, (fd_set *)mUseBits); }
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsysselect.h46 #define FD_ISSET(n, p) (*(p) & (1 << (n))) macro
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclUnixNotfy.c558 if (FD_ISSET(i, &(tsdPtr->checkMasks.readable))
559 || FD_ISSET(i, &(tsdPtr->checkMasks.writable))
560 || FD_ISSET(i, &(tsdPtr->checkMasks.exceptional))) {
848 if (FD_ISSET(filePtr->fd, &(tsdPtr->readyMasks.readable))) {
851 if (FD_ISSET(filePtr->fd, &(tsdPtr->readyMasks.writable))) {
854 if (FD_ISSET(filePtr->fd, &(tsdPtr->readyMasks.exceptional))) {
966 if (FD_ISSET(i, &(tsdPtr->checkMasks.readable))) {
969 if (FD_ISSET(i, &(tsdPtr->checkMasks.writable))) {
972 if (FD_ISSET(i, &(tsdPtr->checkMasks.exceptional))) {
1018 if (FD_ISSET(
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclUnixNotfy.c553 if ( FD_ISSET( i, &(tsdPtr->checkMasks.readable) )
554 || FD_ISSET( i, &(tsdPtr->checkMasks.writable) )
555 || FD_ISSET( i, &(tsdPtr->checkMasks.exceptional ) ) ) {
830 if ( FD_ISSET( filePtr->fd, &(tsdPtr->readyMasks.readable) ) ) {
833 if ( FD_ISSET( filePtr->fd, &(tsdPtr->readyMasks.writable) ) ) {
836 if ( FD_ISSET( filePtr->fd, &(tsdPtr->readyMasks.exceptional) ) ) {
964 if ( FD_ISSET( i, &(tsdPtr->checkMasks.readable) ) ) {
967 if ( FD_ISSET( i, &(tsdPtr->checkMasks.writable) ) ) {
970 if ( FD_ISSET( i, &(tsdPtr->checkMasks.exceptional) ) ) {
1016 if ( FD_ISSET(
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dwarnless.h76 # undef FD_ISSET macro
77 # define FD_ISSET(a,b) curlx_FD_ISSET((a),(b)) macro
H A Dselect.c313 if(FD_ISSET(readfd0, &fds_read))
315 if(FD_ISSET(readfd0, &fds_err))
319 if(FD_ISSET(readfd1, &fds_read))
321 if(FD_ISSET(readfd1, &fds_err))
325 if(FD_ISSET(writefd, &fds_write))
327 if(FD_ISSET(writefd, &fds_err))
483 if(FD_ISSET(ufds[i].fd, &fds_read))
485 if(FD_ISSET(ufds[i].fd, &fds_write))
487 if(FD_ISSET(ufds[i].fd, &fds_err))
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dfifo_rdonly_bug.c112 if (FD_ISSET(fd, &except_fds)) {
115 } else if (FD_ISSET(fd, &read_fds)) {
/macosx-10.9.5/cups-372.4/cups/backend/
H A Drunloop.c83 if (!FD_ISSET(print_fd, &input))
273 if (side_cb && FD_ISSET(CUPS_SC_FD, &input))
289 if (FD_ISSET(device_fd, &input))
312 if (FD_ISSET(print_fd, &input))
351 if (print_bytes && FD_ISSET(device_fd, &output))
501 if (FD_ISSET(0, &input))
508 if (side_cb && FD_ISSET(CUPS_SC_FD, &input))
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-poll.c97 if (FD_ISSET(fd, readfds)) {
100 if (FD_ISSET(fd, writefds)) {
103 if (FD_ISSET(fd, exceptfds)) {
/macosx-10.9.5/ntp-88/include/
H A Dntp_select.h25 #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS))) macro
/macosx-10.9.5/tcl-102/tcl84/tcl/macosx/
H A DtclMacOSXNotify.c743 if (FD_ISSET(i, &(tsdPtr->checkMasks.readable))
744 || FD_ISSET(i, &(tsdPtr->checkMasks.writable))
745 || FD_ISSET(i, &(tsdPtr->checkMasks.exceptional))) {
1000 if (FD_ISSET(filePtr->fd, &(tsdPtr->readyMasks.readable))) {
1003 if (FD_ISSET(filePtr->fd, &(tsdPtr->readyMasks.writable))) {
1006 if (FD_ISSET(filePtr->fd, &(tsdPtr->readyMasks.exceptional))) {
1087 if (FD_ISSET(i, &(tsdPtr->checkMasks.readable))) {
1090 if (FD_ISSET(i, &(tsdPtr->checkMasks.writable))) {
1093 if (FD_ISSET(i, &(tsdPtr->checkMasks.exceptional))) {
1139 if (FD_ISSET(
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/poll/unix/
H A Dselect.c166 if (FD_ISSET(fd, &readset)) {
169 if (FD_ISSET(fd, &writeset)) {
172 if (FD_ISSET(fd, &exceptset)) {
416 if (FD_ISSET(fd, &readset) || FD_ISSET(fd, &writeset) ||
417 FD_ISSET(fd, &exceptset)) {
420 if (FD_ISSET(fd, &readset)) {
423 if (FD_ISSET(fd, &writeset)) {
426 if (FD_ISSET(fd, &exceptset)) {
/macosx-10.9.5/apr-30/apr/apr/poll/unix/
H A Dselect.c166 if (FD_ISSET(fd, &readset)) {
169 if (FD_ISSET(fd, &writeset)) {
172 if (FD_ISSET(fd, &exceptset)) {
416 if (FD_ISSET(fd, &readset) || FD_ISSET(fd, &writeset) ||
417 FD_ISSET(fd, &exceptset)) {
420 if (FD_ISSET(fd, &readset)) {
423 if (FD_ISSET(fd, &writeset)) {
426 if (FD_ISSET(fd, &exceptset)) {
/macosx-10.9.5/remote_cmds-41.90.1/rsh.tproj/
H A Drsh.c275 if (!FD_ISSET(rem, &rembits))
318 if (FD_ISSET(rfd2, &ready)) {
327 if (FD_ISSET(rem, &ready)) {
336 } while (FD_ISSET(rfd2, &readfrom) || FD_ISSET(rem, &readfrom));
/macosx-10.9.5/tcl-102/tcl/tcl/macosx/
H A DtclMacOSXNotify.c1038 if (FD_ISSET(i, &(tsdPtr->checkMasks.readable))
1039 || FD_ISSET(i, &(tsdPtr->checkMasks.writable))
1040 || FD_ISSET(i, &(tsdPtr->checkMasks.exceptional))) {
1315 if (FD_ISSET(filePtr->fd, &readyMasks.readable)) {
1318 if (FD_ISSET(filePtr->fd, &readyMasks.writable)) {
1321 if (FD_ISSET(filePtr->fd, &readyMasks.exceptional)) {
1680 if (FD_ISSET(fd, &readableMask)) {
1683 if (FD_ISSET(fd, &writableMask)) {
1686 if (FD_ISSET(fd, &exceptionalMask)) {
1768 if (FD_ISSET(
[all...]
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dwinscard_msg.c111 if (!FD_ISSET(filedes, &write_fd))
224 if (!FD_ISSET(filedes, &read_fd))
/macosx-10.9.5/remote_cmds-41.90.1/talk.tproj/
H A Dio.c130 if (FD_ISSET(sockt, &read_set)) {
139 if (FD_ISSET(fileno(stdin), &read_set)) {
/macosx-10.9.5/vim-53/src/
H A Dos_beos.c98 if (FD_ISSET(0, rbits)) {
123 if (FD_ISSET(read_cmd_fd, rbits))
/macosx-10.9.5/Heimdal-323.92.1/appl/telnet/telnet/
H A Dnetwork.c91 if (FD_ISSET(net, &excepts)) {
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dnet_write.c96 if (!FD_ISSET(fd, &wfds)) {
/macosx-10.9.5/apache-786.1/httpd/os/tpf/
H A Dos.h55 #define FD_ISSET(n, p)((p)->fds_bits[(n)/NFDBITS] & (1 <<((n) % NFDBITS))) macro
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/examples/
H A Dexcallback.c132 if( FD_ISSET(fileno(stdin), &fds) ) {

Completed in 279 milliseconds

12345678