Searched refs:POLLIN (Results 1 - 25 of 85) sorted by relevance

1234

/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dpoll.h68 #define POLLIN 0x0001 /* any readable data available */ macro
93 #define POLLSTANDARD (POLLIN|POLLPRI|POLLOUT|POLLRDNORM|POLLRDBAND|\
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-poll.h42 #define POLLIN 0x0001 macro
H A Dbsd-poll.c33 * Only supports POLLIN and POLLOUT flags in pfd.events, and POLLIN, POLLOUT
71 if (fds[i].events & POLLIN) {
98 fds[i].revents |= POLLIN;
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dselect.h41 #define POLLIN 0x01 macro
58 #define POLLRDNORM POLLIN
H A Dselect.c184 pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
190 pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
229 if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
236 if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
449 ufds[i].revents |= POLLIN;
451 ufds[i].revents |= (POLLIN|POLLOUT);
466 if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI|
470 if(ufds[i].events & (POLLRDNORM|POLLIN))
536 ufds[i].revents |= POLLIN;
/macosx-10.10.1/OpenSSH-189/openssh/
H A Datomicio.c60 pfd.events = f == read ? POLLIN : POLLOUT;
114 pfd.events = f == readv ? POLLIN : POLLOUT;
H A Dmonitor_fdpass.c139 pfd.events = POLLIN;
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tty/
H A Dlib_twait.c210 fds[count].events = POLLIN;
216 fds[count].events = POLLIN;
227 fds[count].events = POLLIN;
251 && fds[c].revents & POLLIN) {
426 && (fds[count].revents & POLLIN)) {
/macosx-10.10.1/OpenSSL098-52/src/crypto/rand/
H A Drand_unix.c219 pset.events = POLLIN;
225 try_read = (pset.revents & POLLIN) != 0;
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dsocket.c52 #if defined(HAVE_POLL) && !defined(POLLIN) && !defined(POLLNORM)
161 pfd.events = POLLIN;
/macosx-10.10.1/SmartcardCCID-55008/libusb/libusb/libusb/os/
H A Dpoll_windows.h48 #define POLLIN 0x0001 /* There is data to read */ macro
/macosx-10.10.1/apr-32/apr/apr/include/arch/unix/
H A Dapr_arch_networkio.h88 #define POLLIN 1 macro
/macosx-10.10.1/apr-32/apr/apr/support/unix/
H A Dwaitio.c48 pfd.events = for_read ? POLLIN : POLLOUT;
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Dfilter_fork.c136 fds[idx].events = POLLIN;
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dpoll_fd.c241 pollfd.events = POLLIN;
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dio.cpp325 poll_fds[i].events = POLLIN;
344 } else if (poll_fds[i].revents & (POLLIN | POLLRDNORM | POLLRDBAND |
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfpkrd.c139 po.events = POLLIN;
151 else r = (po.revents&POLLIN) ? 1 : -1;
H A Dsfpoll.c134 fds[m].events |= POLLIN;
157 if(fds[m].revents&POLLIN)
/macosx-10.10.1/libpcap-48/libpcap/tests/
H A Dselpolltest.c195 fd.events = POLLIN;
209 if (fd.revents & POLLIN)
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexp_poll.c268 /* I know that POLLIN/OUT is right. But I have no idea if POLLPRI
273 fdArray[cur_fd_index].events = POLLIN;
500 if (fdArray[index].revents & POLLIN) {
/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Dio.h43 # define RB_WAITFD_IN POLLIN
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dpoll.c177 ts->ts_pfds[i].events = POLLIN;
/macosx-10.10.1/lukemftp-14/tnftp/
H A Dtnftp.h119 #if !defined(POLLIN)
120 # define POLLIN 0x0001 macro
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dzle_main.c36 #if defined(HAVE_POLL) && !defined(POLLIN) && !defined(POLLNORM)
585 * POLLIN, POLLIN, POLLIN,
586 * Keep those fd's POLLIN...
588 fds[0].events = POLLIN;
591 fds[i+1].events = POLLIN;
714 (fds[0].revents & POLLIN)
735 (fds[i+1].revents & POLLIN)
1097 pfd.events = POLLIN;
[all...]
/macosx-10.10.1/apr-32/apr/apr/poll/unix/
H A Dpoll.c37 rv |= POLLIN;
51 if (event & POLLIN)

Completed in 299 milliseconds

1234