Home
last modified time | relevance | path

Searched refs:EPOLLOUT (Results 1 – 25 of 61) sorted by relevance

123

/third_party/python/Lib/test/
Dtest_epoll.py108 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/
Depoll_wait01.c55 {.events = EPOLLOUT}, in setup()
122 if (ret_evs.events != EPOLLOUT) { 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()
Depoll_wait03.c27 {.events = EPOLLOUT}
/third_party/ltp/testcases/kernel/syscalls/epoll_ctl/
Depoll_ctl01.c30 {.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()
Depoll_ctl03.c27 EPOLLIN, EPOLLOUT, EPOLLPRI, EPOLLERR,
Depoll_ctl02.c34 {.events = EPOLLOUT},
/third_party/lwip/
D0007-gazelle-fix-epoll_ctl-EPOLLET-mode-error.patch78 add_epoll_event(conn, EPOLLOUT);
85 - del_epoll_event(conn, EPOLLOUT);
87 + del_epoll_event(conn, EPOLLOUT);
D0029-fix-EISCONN-err-and-remove-same-customized-modificat.patch37 - add_epoll_event(conn, EPOLLOUT);
D0016-lstack-support-mysql-mode.patch72 - ee.events |= EPOLLIN | EPOLLOUT | EPOLLERR;
576 add_epoll_event(conn, EPOLLOUT);
584 - del_epoll_event(conn, EPOLLOUT);
D0024-refactor-pkt-read-send-performance.patch55 + add_epoll_event(conn, EPOLLOUT);
/third_party/libwebsockets/lib/event-libs/sdevent/
Dsdevent.c115 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/ndk_musl_include/sys/
Depoll.h22 #define EPOLLOUT 0x004 macro
/third_party/musl/include/sys/
Depoll.h22 #define EPOLLOUT 0x004 macro
/third_party/musl/porting/uniproton/kernel/include/sys/
Depoll.h22 #define EPOLLOUT 0x004 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Depoll.h22 #define EPOLLOUT 0x004 macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
Depoll.h22 #define EPOLLOUT 0x004 macro
/third_party/rust/crates/libc/libc-test/semver/
Dredox.txt72 EPOLLOUT
/third_party/rust/crates/nix/src/sys/
Depoll.rs12 EPOLLOUT;
/third_party/rust/crates/linux-raw-sys/gen/modules/
Dgeneral.h253 #define EPOLLOUT 0x00000004 macro
/third_party/curl/docs/examples/
Dephiperfifo.c207 ((revents & EPOLLOUT) ? CURL_CSELECT_OUT : 0); in event_cb()
273 ((act & CURL_POLL_OUT) ? EPOLLOUT : 0); in setsock()
/third_party/python/Lib/
Dselectors.py447 _EVENT_WRITE = select.EPOLLOUT
476 if event & ~select.EPOLLOUT:
/third_party/ltp/testcases/kernel/syscalls/epoll/
Depoll-ltp.c419 (EPOLLOUT * ((index & 0x02) >> 1)) | in test_epoll_ctl()
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
Depoll.rs92 const OUT = linux_raw_sys::general::EPOLLOUT as u32;
/third_party/rust/crates/rustix/src/backend/libc/io/
Depoll.rs91 const OUT = c::EPOLLOUT as u32;
/third_party/libbpf/src/
Dringbuf.c410 rb_epoll->events = EPOLLOUT; in user_ringbuf_map()

123