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

123

/external/strace/xlat/
H A Dpollflags.h4 #if defined(POLLIN) || (defined(HAVE_DECL_POLLIN) && HAVE_DECL_POLLIN)
5 XLAT(POLLIN),
/external/kernel-headers/original/uapi/asm-generic/
H A Dpoll.h5 #define POLLIN 0x0001 macro
/external/openssh/openbsd-compat/
H A Dbsd-poll.h42 #define POLLIN 0x0001 macro
H A Dbsd-poll.c36 * Only supports POLLIN and POLLOUT flags in pfd.events, and POLLIN, POLLOUT
74 if (fds[i].events & POLLIN) {
101 fds[i].revents |= POLLIN;
/external/parameter-framework/remote-processor/
H A DRemoteProcessorServer.cpp147 _aPollFds[0].events = POLLIN;
148 _aPollFds[1].events = POLLIN;
154 if (_aPollFds[0].revents & POLLIN) {
159 if (_aPollFds[1].revents & POLLIN) {
/external/valgrind/memcheck/tests/linux/
H A Dsyscalls-2007.c51 pfd[0].events = POLLIN|POLLOUT;
53 pfd[1].events = POLLIN|POLLOUT;
H A Dtimerfd-syscall.c152 pfd.events = POLLIN;
159 if ((pfd.revents & POLLIN) == 0)
/external/netcat/
H A Datomicio.c49 pfd.events = f == read ? POLLIN : POLLOUT;
H A Dnetcat.c772 pfd[0].events = POLLIN;
776 pfd[1].events = POLLIN;
790 if (pfd[0].revents & POLLIN) {
805 if (!dflag && pfd[1].revents & POLLIN) {
/external/openssh/
H A Datomicio.c62 pfd.events = f == read ? POLLIN : POLLOUT;
119 pfd.events = f == readv ? POLLIN : POLLOUT;
H A Dmonitor_fdpass.c146 pfd.events = POLLIN;
/external/google-breakpad/src/client/linux/crash_generation/
H A Dcrash_generation_server.cc162 pollfds[0].events = POLLIN;
165 pollfds[1].events = POLLIN;
191 assert(POLLIN & revents);
289 assert(POLLIN & revents);
/external/toybox/toys/other/
H A Dnetcat.c89 pollfds[0].events = pollfds[1].events = POLLIN;
198 if (pollfds[i].revents & POLLIN) {
H A Dinotifyd.c43 fds.events = POLLIN;
/external/valgrind/auxprogs/
H A Dvalgrind-listener.c339 ufd.events = POLLIN;
383 conn_pollfd[j].events = POLLIN /* | POLLHUP | POLLNVAL */;
402 if (conn_pollfd[i].revents & POLLIN) {
/external/selinux/policycoreutils/mcstrans/src/
H A Dmcstransd.c308 (*ufds)[ii].events = POLLIN|POLLPRI;
340 if (revents & (POLLIN | POLLPRI)) {
371 revents = revents & ~(POLLIN | POLLPRI);
416 ufds[0].events = POLLIN|POLLPRI;
/external/toybox/lib/
H A Dinterestingtimes.c97 pfd.events = POLLIN;
/external/ipsec-tools/
H A Dmain.c154 pollfds[monitors].events = callback ? POLLIN : 0;
209 if (pollfds[i].revents & POLLIN) {
/external/libpcap/tests/
H A Dselpolltest.c195 fd.events = POLLIN;
209 if (fd.revents & POLLIN)
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer_unittest.cc377 pfd.events = POLLIN | POLLERR;
381 ASSERT_TRUE(pfd.revents & POLLIN);
621 pfd.events = POLLIN | POLLERR;
625 ASSERT_TRUE(pfd.revents & POLLIN);
/external/tinycompress/
H A Dcompress.c427 fds.events = POLLIN;
450 if (fds.revents & POLLIN) {
616 fds.events = POLLOUT | POLLIN;
622 if (fds.revents & (POLLOUT | POLLIN))
/external/dhcpcd/
H A Deloop.c337 fds[nfds].events = POLLIN;
356 if (!(fds[i].revents & (POLLIN | POLLHUP)))
/external/mtpd/
H A Dmtpd.c185 pollfds[0].events = POLLIN;
187 pollfds[1].events = POLLIN;
/external/toybox/toys/pending/
H A Dtelnet.c348 pfds[0].events = POLLIN;
350 pfds[1].events = POLLIN;
/external/android-clat/
H A Dclatd.c377 { tunnel->read_fd6, POLLIN, 0 },
378 { tunnel->fd4, POLLIN, 0 },

Completed in 660 milliseconds

123