/third_party/python/Lib/test/ |
H A D | test_epoll.py | 108 ep.register(server.fileno(), select.EPOLLIN | select.EPOLLOUT) 109 ep.register(client.fileno(), select.EPOLLIN | select.EPOLLOUT) 116 ep.register(server, select.EPOLLIN | select.EPOLLOUT) 117 ep.register(client, select.EPOLLIN | select.EPOLLOUT) 125 select.EPOLLIN | select.EPOLLOUT) 127 select.EPOLLIN | select.EPOLLOUT) 130 select.EPOLLIN | select.EPOLLOUT) 133 select.EPOLLIN | select.EPOLLOUT) 135 ep.register(server, select.EPOLLIN | select.EPOLLOUT) 137 select.EPOLLIN | select.EPOLLOUT) [all...] |
/third_party/ltp/testcases/kernel/syscalls/epoll_wait/ |
H A D | epoll_wait01.c | 10 * Basic test for epoll_wait. Check that epoll_wait works for EPOLLOUT and 55 {.events = EPOLLOUT}, in setup() 122 if (ret_evs.events != EPOLLOUT) { in verify_epollout() 123 tst_res(TFAIL, "epoll.events %x, expected EPOLLOUT %x", in verify_epollout() 124 ret_evs.events, EPOLLOUT); in verify_epollout() 176 uint32_t events = EPOLLIN | EPOLLOUT; in verify_epollio() 199 if ((events & EPOLLOUT) && in verify_epollio() 200 has_event(ret_evs, 2, fds[1], EPOLLOUT)) { in verify_epollio() 202 events &= ~EPOLLOUT; in verify_epollio()
|
H A D | epoll_wait06.c | 10 * and EPOLLOUT. 21 * - A call to epoll_wait() should return a EPOLLOUT event. 42 /* EPOLLOUT will be raised when buffer became empty after becoming full */ in setup() 72 .events = EPOLLOUT | EPOLLET, in run() 100 TST_EXP_EQ_LI(evt_receive.events & EPOLLOUT, EPOLLOUT); in run()
|
H A D | epoll_wait03.c | 27 {.events = EPOLLOUT}
|
/third_party/ltp/testcases/kernel/syscalls/epoll_ctl/ |
H A D | epoll_ctl01.c | 30 {.events = EPOLLOUT}, 82 events |= EPOLLOUT; in check_epoll_ctl() 104 if ((events & EPOLLOUT) && in check_epoll_ctl() 105 has_event(res_evs, 2, fd[1], EPOLLOUT)) { in check_epoll_ctl() 107 events &= ~EPOLLOUT; in check_epoll_ctl()
|
H A D | epoll_ctl03.c | 27 EPOLLIN, EPOLLOUT, EPOLLPRI, EPOLLERR,
|
H A D | epoll_ctl02.c | 34 {.events = EPOLLOUT},
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_event_epoll.c | 108 epev.events |= EPOLLOUT; in ares_evsys_epoll_event_add() 141 epev.events |= EPOLLOUT; in ares_evsys_epoll_event_mod() 181 if (events[i].events & EPOLLOUT) { in ares_evsys_epoll_wait()
|
/third_party/libwebsockets/lib/event-libs/sdevent/ |
H A D | sdevent.c | 115 if (revents & EPOLLOUT) { in sock_accept_handler() 180 wsi_to_priv_sd(wsi)->events |= EPOLLOUT; in io_sd() 193 (uint32_t)(~EPOLLOUT); in io_sd() 203 if (!(wsi_to_priv_sd(wsi)->events & (EPOLLIN | EPOLLOUT))) in io_sd()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | epoll.h | 22 #define EPOLLOUT 0x004 macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | epoll.h | 22 #define EPOLLOUT 0x004 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | epoll.h | 22 #define EPOLLOUT 0x004 macro
|
/third_party/musl/include/sys/ |
H A D | epoll.h | 22 #define EPOLLOUT 0x004 macro
|
/third_party/rust/crates/nix/src/sys/ |
H A D | epoll.rs | 12 EPOLLOUT;
|
/third_party/curl/docs/examples/ |
H A D | ephiperfifo.c | 207 ((revents & EPOLLOUT) ? CURL_CSELECT_OUT : 0); in event_cb() 273 ((act & CURL_POLL_OUT) ? EPOLLOUT : 0); in setsock()
|
/third_party/python/Lib/ |
H A D | selectors.py | 446 _EVENT_WRITE = select.EPOLLOUT 475 if event & ~select.EPOLLOUT:
|
/third_party/rust/crates/linux-raw-sys/gen/modules/ |
H A D | general.h | 253 #define EPOLLOUT 0x00000004 macro
|
/third_party/rust/crates/rustix/src/backend/linux_raw/io/ |
H A D | epoll.rs | 91 /// `EPOLLOUT` 92 const OUT = linux_raw_sys::general::EPOLLOUT as u32;
|
/third_party/ltp/testcases/kernel/syscalls/epoll/ |
H A D | epoll-ltp.c | 419 (EPOLLOUT * ((index & 0x02) >> 1)) | in test_epoll_ctl()
|
/third_party/rust/crates/rustix/src/backend/libc/io/ |
H A D | epoll.rs | 90 /// `EPOLLOUT` 91 const OUT = c::EPOLLOUT as u32;
|
/third_party/libbpf/src/ |
H A D | ringbuf.c | 469 rb_epoll->events = EPOLLOUT; in user_ringbuf_map()
|
/third_party/python/Modules/clinic/ |
H A D | selectmodule.c.h | 645 " eventmask=select.EPOLLIN | select.EPOLLPRI | select.EPOLLOUT)\n" 673 unsigned int eventmask = EPOLLIN | EPOLLPRI | EPOLLOUT; in select_epoll_register()
|
/third_party/libcoap/src/ |
H A D | coap_openssl.c | 3311 EPOLLOUT | in coap_tls_new_client_session() 3381 EPOLLOUT | in coap_tls_new_server_session() 3455 EPOLLOUT | in coap_tls_write() 3533 EPOLLOUT | in coap_tls_read()
|
H A D | coap_io.c | 742 EPOLLOUT | 762 EPOLLOUT |
|
H A D | coap_net.c | 2133 (events[j].events & EPOLLOUT)) { in coap_io_do_epoll() 2135 * Need to update this to EPOLLIN as EPOLLOUT will normally always in coap_io_do_epoll() 2161 (events[j].events & (EPOLLOUT|EPOLLERR|EPOLLHUP|EPOLLRDHUP))) { in coap_io_do_epoll() 2178 (events[j].events & (EPOLLOUT|EPOLLERR|EPOLLHUP|EPOLLRDHUP))) { in coap_io_do_epoll() 2180 * Need to update this to EPOLLIN as EPOLLOUT will normally always in coap_io_do_epoll()
|