Home
last modified time | relevance | path

Searched refs:POLLOUT (Results 1 – 25 of 120) sorted by relevance

12345

/external/libevent/
Ddevpoll.c207 what |= POLLIN | POLLOUT; in devpoll_dispatch()
209 what |= POLLIN | POLLOUT; in devpoll_dispatch()
213 if (what & POLLOUT) in devpoll_dispatch()
245 res |= POLLOUT; in devpoll_add()
264 res |= POLLOUT; in devpoll_del()
276 if ((res & (POLLIN|POLLOUT)) != (POLLIN|POLLOUT)) { in devpoll_del()
284 devpoll_queue(devpollop, fd, POLLOUT); in devpoll_del()
285 } else if ((res & POLLOUT) && (old & EV_READ)) { in devpoll_del()
Dpoll.c213 what |= POLLIN|POLLOUT; in poll_dispatch()
216 if (what & POLLOUT) in poll_dispatch()
278 pfd->events |= POLLOUT; in poll_add()
314 pfd->events &= ~POLLOUT; in poll_del()
/external/curl/lib/
Dselect.c278 pfd[num].events = POLLWRNORM|POLLOUT|POLLPRI; in Curl_socket_check()
304 if(pfd[num].revents & (POLLWRNORM|POLLOUT)) in Curl_socket_check()
381 ufds[i].revents |= POLLIN|POLLOUT; in Curl_poll()
396 if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI| in Curl_poll()
402 if(ufds[i].events & (POLLWRNORM|POLLOUT)) in Curl_poll()
433 if(ufds[i].events & POLLOUT) in Curl_poll()
434 ufds[i].revents |= POLLOUT; in Curl_poll()
Dselect.h44 #define POLLOUT 0x04 macro
63 #define POLLWRNORM POLLOUT
/external/strace/xlat/
Dpollflags.h20 #if defined(POLLOUT) || (defined(HAVE_DECL_POLLOUT) && HAVE_DECL_POLLOUT)
22 static_assert((POLLOUT) == (0x0004), "POLLOUT != 0x0004");
25 # define POLLOUT 0x0004
168 XLAT(POLLOUT),
Dpollflags.in3 POLLOUT 0x0004
11 /* POLLWRNORM POLLOUT */
/external/openssh/
Datomicio.c62 pfd.events = f == read ? POLLIN : POLLOUT; in atomicio6()
64 pfd.events = POLLIN|POLLOUT; in atomicio6()
124 pfd.events = f == readv ? POLLIN : POLLOUT; in atomiciov6()
126 pfd.events = POLLIN|POLLOUT; in atomiciov6()
/external/strace/tests-m32/
Dpoll.c64 PRINT_EVENT(POLLOUT, events); in print_pollfd_entering()
131 PRINT_EVENT(POLLOUT, revents); in print_pollfd_exiting()
187 { .fd = 1, .events = POLLOUT | POLLWRNORM | POLLWRBAND }, in main()
189 { .fd = fds[1], .events = POLLOUT }, in main()
190 { .fd = 2, .events = POLLOUT | POLLWRBAND } in main()
247 { .fd = 0, .events = POLLOUT | POLLWRNORM | POLLWRBAND } in main()
Dppoll.c68 (POLLWRNORM == POLLOUT) ? "" : "|POLLWRNORM"; in main()
122 { .fd = pipe_fd[1], .events = POLLOUT | POLLWRNORM | POLLWRBAND }, in main()
124 { .fd = pipe_fd[3], .events = POLLOUT } in main()
194 { .fd = pipe_fd[0], .events = POLLOUT | POLLWRNORM | POLLWRBAND } in main()
/external/strace/tests-mx32/
Dpoll.c64 PRINT_EVENT(POLLOUT, events); in print_pollfd_entering()
131 PRINT_EVENT(POLLOUT, revents); in print_pollfd_exiting()
187 { .fd = 1, .events = POLLOUT | POLLWRNORM | POLLWRBAND }, in main()
189 { .fd = fds[1], .events = POLLOUT }, in main()
190 { .fd = 2, .events = POLLOUT | POLLWRBAND } in main()
247 { .fd = 0, .events = POLLOUT | POLLWRNORM | POLLWRBAND } in main()
Dppoll.c68 (POLLWRNORM == POLLOUT) ? "" : "|POLLWRNORM"; in main()
122 { .fd = pipe_fd[1], .events = POLLOUT | POLLWRNORM | POLLWRBAND }, in main()
124 { .fd = pipe_fd[3], .events = POLLOUT } in main()
194 { .fd = pipe_fd[0], .events = POLLOUT | POLLWRNORM | POLLWRBAND } in main()
/external/strace/tests/
Dpoll.c64 PRINT_EVENT(POLLOUT, events); in print_pollfd_entering()
131 PRINT_EVENT(POLLOUT, revents); in print_pollfd_exiting()
187 { .fd = 1, .events = POLLOUT | POLLWRNORM | POLLWRBAND }, in main()
189 { .fd = fds[1], .events = POLLOUT }, in main()
190 { .fd = 2, .events = POLLOUT | POLLWRBAND } in main()
247 { .fd = 0, .events = POLLOUT | POLLWRNORM | POLLWRBAND } in main()
Dppoll.c68 (POLLWRNORM == POLLOUT) ? "" : "|POLLWRNORM"; in main()
122 { .fd = pipe_fd[1], .events = POLLOUT | POLLWRNORM | POLLWRBAND }, in main()
124 { .fd = pipe_fd[3], .events = POLLOUT } in main()
194 { .fd = pipe_fd[0], .events = POLLOUT | POLLWRNORM | POLLWRBAND } in main()
/external/libwebsockets/include/libwebsockets/
Dlws-freertos.h45 #if !defined(POLLIN) && !defined(POLLOUT)
54 #define POLLOUT 0x0004 macro
/external/openssh/openbsd-compat/
Dbsd-poll.h43 #define POLLOUT 0x0004 macro
52 #define POLLWRNORM POLLOUT
Dbsd-poll.c76 if (fds[i].events & POLLOUT) { in poll()
102 fds[i].revents |= POLLOUT; in poll()
/external/ltp/testcases/kernel/syscalls/poll/
Dpoll01.c27 {.fd = fildes[1], .events = POLLOUT}, in verify_pollout()
37 if (outfds[0].revents != POLLOUT) { in verify_pollout()
/external/rust/crates/libc/src/unix/newlib/xtensa/
Dmod.rs71 pub const POLLOUT: ::c_short = 1 << 3; constant
72 pub const POLLWRNORM: ::c_short = POLLOUT;
/external/ltp/testcases/kernel/syscalls/ppoll/
Dppoll01.c88 .expect_revents = POLLIN | POLLOUT,
183 fds_good[0].events = POLLIN | POLLPRI | POLLOUT | POLLRDHUP; in setup()
189 fds_already_closed[0].events = POLLIN | POLLPRI | POLLOUT | POLLRDHUP; in setup()
/external/python/cpython2/Lib/test/
Dtest_poll.py47 p.register(wr, select.POLLOUT)
57 ready_writers = find_ready_matching(ready, select.POLLOUT)
201 pollster.register(w, select.POLLOUT)
/external/adhd/cras/src/server/
Dcras_dbus.c25 pollfd.events = POLLIN | POLLOUT; in dbus_watch_callback()
34 if (pollfd.revents & POLLOUT) in dbus_watch_callback()
/external/ltp/testcases/kernel/syscalls/utils/
Dpoll.h7 #define POLLOUT 0x0004 macro
/external/python/cpython3/Lib/test/
Dtest_poll.py45 p.register(wr, select.POLLOUT)
55 ready_writers = find_ready_matching(ready, select.POLLOUT)
199 pollster.register(w, select.POLLOUT)
/external/kernel-headers/original/uapi/asm-generic/
Dpoll.h8 #define POLLOUT 0x0004 macro
/external/igt-gpu-tools/tests/
Dvc4_dmabuf_poll.c76 poll_write_bo_test(fd, POLLOUT);

12345