Home
last modified time | relevance | path

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

12

/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/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/porting/liteos_m/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/uniproton/kernel/include/sys/
Depoll.h22 #define EPOLLOUT 0x004 macro
/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/boost/boost/asio/detail/impl/
Depoll_reactor.ipp279 if ((descriptor_data->registered_events_ & EPOLLOUT) == 0)
282 ev.events = descriptor_data->registered_events_ | EPOLLOUT;
308 descriptor_data->registered_events_ |= EPOLLOUT;
493 if ((events[i].events & EPOLLOUT))
735 static const int flag[max_ops] = { EPOLLIN, EPOLLOUT, EPOLLPRI };
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Depoll_reactor.ipp279 if ((descriptor_data->registered_events_ & EPOLLOUT) == 0)
282 ev.events = descriptor_data->registered_events_ | EPOLLOUT;
308 descriptor_data->registered_events_ |= EPOLLOUT;
493 if ((events[i].events & EPOLLOUT))
735 static const int flag[max_ops] = { EPOLLIN, EPOLLOUT, EPOLLPRI };
/third_party/wayland_standard/src/
Devent-loop.c105 if (ep->events & EPOLLOUT) in wl_event_source_fd_dispatch()
138 ep.events |= EPOLLOUT; in add_source()
224 ep.events |= EPOLLOUT; in wl_event_source_fd_update()
/third_party/curl/docs/examples/
Dephiperfifo.c205 ((revents & EPOLLOUT) ? CURL_CSELECT_OUT : 0); in event_cb()
271 ((act & CURL_POLL_OUT) ? EPOLLOUT : 0); in setsock()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/multi-touch-viewer/src/
Dwindow.c284 if (events & EPOLLOUT) in handle_display_data()
657 ep[0].events = EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP; in DisplayRun()
/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/grpc/src/core/lib/iomgr/
Dev_epoll1_linux.cc365 ev.events = static_cast<uint32_t>(EPOLLIN | EPOLLOUT | EPOLLET); in fd_create()
691 bool write_ev = (ev->events & EPOLLOUT) != 0; in process_epoll_events()
Dev_epollex_linux.cc622 static_cast<uint32_t>(EPOLLET | EPOLLIN | EPOLLOUT | EPOLLEXCLUSIVE);
904 bool write_ev = (ev->events & EPOLLOUT) != 0;
/third_party/python/Doc/library/
Dselect.rst287 | :const:`EPOLLOUT` | Available for write |
313 | :const:`EPOLLWRNORM` | Equivalent to :const:`EPOLLOUT` |
/third_party/libcoap/src/
Dcoap_io.c531 EPOLLOUT |
552 EPOLLOUT |
Dcoap_openssl.c3200 EPOLLOUT | in coap_tls_new_client_session()
3258 EPOLLOUT | in coap_tls_new_server_session()
3322 EPOLLOUT | in coap_tls_write()
3387 EPOLLOUT | in coap_tls_read()
/third_party/python/Modules/clinic/
Dselectmodule.c.h665 unsigned int eventmask = EPOLLIN | EPOLLPRI | EPOLLOUT; in select_epoll_register()

12