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

1234

/external/strace/xlat/
H A Dpollflags.h4 #if defined(POLLIN) || (defined(HAVE_DECL_POLLIN) && HAVE_DECL_POLLIN)
5 XLAT(POLLIN),
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
H A Dpoll.h15 #define POLLIN 0x0001 /* Will not block READ select/poll. */ macro
/external/kernel-headers/original/uapi/asm-generic/
H A Dpoll.h5 #define POLLIN 0x0001 macro
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Devent_test.cc51 emitter.RegisterListener(&listener_a, POLLIN | POLLOUT | POLLERR);
52 emitter.RegisterListener(&listener_b, POLLIN | POLLOUT | POLLERR);
59 emitter.RaiseEvents_Locked(POLLIN);
61 EXPECT_EQ(POLLIN, listener_a.Events());
70 EXPECT_EQ(POLLIN | POLLOUT, listener_b.Events());
98 EXPECT_EQ(0, listener.WaitOnEvent(POLLIN, -1));
99 emitter_.ClearEvents_Locked(POLLIN);
139 emitter_.RaiseEvents_Locked(POLLIN);
150 emitter_.RaiseEvents_Locked(POLLIN);
159 emitter_.RaiseEvents_Locked(POLLIN);
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
H A Dstream_event_emitter.cc34 status |= POLLIN;
/external/valgrind/main/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/chromium_org/third_party/libevent/
H A Ddevpoll.c256 what |= POLLIN | POLLOUT;
258 what |= POLLIN | POLLOUT;
260 if (what & POLLIN) {
320 events |= POLLIN;
361 events |= POLLIN;
375 if ((events & (POLLIN|POLLOUT)) != (POLLIN|POLLOUT)) {
381 if ((events & POLLIN) && evdp->evwrite != NULL) {
387 devpoll_queue(devpollop, fd, POLLIN);
H A Dpoll.c113 if (pop->event_set[idx].events & POLLIN) {
181 what |= POLLIN|POLLOUT;
182 if (what & POLLIN) {
297 pfd->events |= POLLIN;
330 pfd->events &= ~POLLIN;
/external/netcat/
H A Datomicio.c49 pfd.events = f == read ? POLLIN : POLLOUT;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
H A Dtcp_event_emitter.cc32 RaiseEvents_Locked(POLLIN | POLLOUT);
38 RaiseEvents_Locked(POLLIN);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pipe/
H A Dpipe_node.cc37 Error err = wait.WaitOnEvent(POLLIN, ms);
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dlinux_netlink.c309 .events = POLLIN },
311 .events = POLLIN },
318 if (fds[0].revents & POLLIN) {
326 if (fds[1].revents & POLLIN) {
H A Dlinux_udev.c168 .events = POLLIN},
170 .events = POLLIN},
176 if (fds[0].revents & POLLIN) {
184 if (fds[1].revents & POLLIN) {
H A Dpoll_windows.h54 #define POLLIN 0x0001 /* There is data to read */ macro
/external/chromium_org/content/common/gpu/media/
H A Dexynos_v4l2_video_device.cc54 pollfds[0].events = POLLIN | POLLERR;
60 pollfds[nfds].events = POLLIN | POLLOUT | POLLERR | POLLPRI;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Djspipe_node.cc42 Error err = wait.WaitOnEvent(POLLIN, ms);
H A Dtty_node.cc118 Error err = wait.WaitOnEvent(POLLIN, -1);
156 emitter_->ClearEvents_Locked(POLLIN);
256 emitter_->RaiseEvents_Locked(POLLIN);
/external/valgrind/main/auxprogs/
H A Dvalgrind-listener.c308 ufd.events = POLLIN;
350 conn_pollfd[j].events = POLLIN /* | POLLHUP | POLLNVAL */;
369 if (conn_pollfd[i].revents & POLLIN) {
/external/ipsec-tools/
H A Dmain.c154 pollfds[monitors].events = callback ? POLLIN : 0;
204 if (pollfds[i].revents & POLLIN) {
/external/libpcap/tests/
H A Dselpolltest.c195 fd.events = POLLIN;
209 if (fd.revents & POLLIN)
/external/openssl/crypto/rand/
H A Drand_unix.c308 pset.events = POLLIN;
314 try_read = (pset.revents & POLLIN) != 0;
/external/bluetooth/bluedroid/udrv/ulinux/
H A Duipc.c183 pfd.events = POLLIN;
382 pfd.events = POLLIN;
777 pfd.events = POLLIN|POLLHUP;
/external/chromium_org/content/browser/renderer_host/
H A Dsandbox_ipc_linux.cc84 pfds[0].events = POLLIN;
86 pfds[1].events = POLLIN;
117 if (pfds[1].revents & POLLIN) {
/external/chromium_org/net/test/spawned_test_server/
H A Dlocal_test_server_posix.cc71 poll_fds[0].events = POLLIN | POLLPRI;

Completed in 733 milliseconds

1234