/external/libevent/ |
D | devpoll.c | 207 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()
|
D | poll.c | 202 what |= POLLIN|POLLOUT; in poll_dispatch() 205 if (what & POLLOUT) in poll_dispatch() 265 pfd->events |= POLLOUT; in poll_add() 299 pfd->events &= ~POLLOUT; in poll_del()
|
/external/strace/tests-mx32/ |
D | poll.c | 64 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()
|
D | ppoll.c | 68 (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-m32/ |
D | poll.c | 64 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()
|
D | ppoll.c | 68 (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/ |
D | poll.c | 64 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()
|
D | ppoll.c | 68 (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/xlat/ |
D | pollflags.h | 20 #if defined(POLLOUT) || (defined(HAVE_DECL_POLLOUT) && HAVE_DECL_POLLOUT) 22 static_assert((POLLOUT) == (0x0004), "POLLOUT != 0x0004"); 25 # define POLLOUT 0x0004 168 XLAT(POLLOUT),
|
D | pollflags.in | 3 POLLOUT 0x0004 11 /* POLLWRNORM POLLOUT */
|
/external/openssh/openbsd-compat/ |
D | bsd-poll.h | 43 #define POLLOUT 0x0004 macro 52 #define POLLWRNORM POLLOUT
|
D | bsd-poll.c | 76 if (fds[i].events & POLLOUT) { in poll() 102 fds[i].revents |= POLLOUT; in poll()
|
/external/curl/lib/ |
D | select.c | 206 pfd[num].events = POLLWRNORM|POLLOUT; in Curl_socket_check() 254 if(pfd[num].revents & (POLLWRNORM|POLLOUT)) in Curl_socket_check() 465 ufds[i].revents |= (POLLIN|POLLOUT); in Curl_poll() 480 if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI| in Curl_poll() 486 if(ufds[i].events & (POLLWRNORM|POLLOUT)) in Curl_poll() 555 ufds[i].revents |= POLLOUT; in Curl_poll()
|
D | select.h | 44 #define POLLOUT 0x04 macro 63 #define POLLWRNORM POLLOUT
|
/external/ltp/testcases/kernel/syscalls/poll/ |
D | poll01.c | 27 {.fd = fildes[1], .events = POLLOUT}, in verify_pollout() 37 if (outfds[0].revents != POLLOUT) { in verify_pollout()
|
/external/ltp/testcases/kernel/syscalls/ppoll/ |
D | ppoll01.c | 88 .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/openssh/ |
D | atomicio.c | 62 pfd.events = f == read ? POLLIN : POLLOUT; in atomicio6() 119 pfd.events = f == readv ? POLLIN : POLLOUT; in atomiciov6()
|
/external/python/cpython2/Lib/test/ |
D | test_poll.py | 47 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/ |
D | cras_dbus.c | 25 pollfd.events = POLLIN | POLLOUT; in dbus_watch_callback() 34 if (pollfd.revents & POLLOUT) in dbus_watch_callback()
|
/external/python/cpython3/Lib/test/ |
D | test_poll.py | 45 p.register(wr, select.POLLOUT) 55 ready_writers = find_ready_matching(ready, select.POLLOUT) 199 pollster.register(w, select.POLLOUT)
|
/external/ltp/testcases/kernel/syscalls/utils/ |
D | poll.h | 7 #define POLLOUT 0x0004 macro
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | poll.h | 8 #define POLLOUT 0x0004 macro
|
/external/rust/crates/libc/src/unix/newlib/arm/ |
D | mod.rs | 34 pub const POLLOUT: ::c_short = 0x10; constant
|
/external/rust/crates/libc/src/unix/newlib/aarch64/ |
D | mod.rs | 32 pub const POLLOUT: ::c_short = 0x4; constant
|
/external/tinycompress/ |
D | compress.c | 365 fds.events = POLLOUT; in compress_write() 390 if (fds.revents & POLLOUT) { in compress_write() 629 fds.events = POLLOUT | POLLIN; in compress_wait() 635 if (fds.revents & (POLLOUT | POLLIN)) in compress_wait()
|