Home
last modified time | relevance | path

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

12

/external/libevent/
Depolltable-internal.h173 { EPOLLOUT, EPOLL_CTL_ADD },
175 { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD },
177 { EPOLLOUT, EPOLL_CTL_ADD },
181 { EPOLLIN|EPOLLOUT, EPOLL_CTL_ADD },
183 { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD },
185 { EPOLLIN|EPOLLOUT, EPOLL_CTL_ADD },
189 { EPOLLOUT, EPOLL_CTL_ADD },
191 { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD },
193 { EPOLLOUT, EPOLL_CTL_ADD },
205 { EPOLLOUT, EPOLL_CTL_DEL },
[all …]
Depoll.c494 if (what & EPOLLOUT) in epoll_dispatch()
/external/python/cpython2/Lib/test/
Dtest_epoll.py92 ep.register(server.fileno(), select.EPOLLIN | select.EPOLLOUT)
93 ep.register(client.fileno(), select.EPOLLIN | select.EPOLLOUT)
100 ep.register(server, select.EPOLLIN | select.EPOLLOUT)
101 ep.register(client, select.EPOLLIN | select.EPOLLOUT)
109 select.EPOLLIN | select.EPOLLOUT)
111 select.EPOLLIN | select.EPOLLOUT)
114 select.EPOLLIN | select.EPOLLOUT)
117 select.EPOLLIN | select.EPOLLOUT)
119 ep.register(server, select.EPOLLIN | select.EPOLLOUT)
121 select.EPOLLIN | select.EPOLLOUT)
[all …]
/external/python/cpython3/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 …]
/external/ltp/testcases/kernel/syscalls/epoll_wait/
Depoll_wait01.c53 {.events = EPOLLOUT}, in setup()
119 if (ret_evs.events != EPOLLOUT) { in verify_epollout()
121 ret_evs.events, EPOLLOUT); in verify_epollout()
173 uint32_t events = EPOLLIN | EPOLLOUT; in verify_epollio()
196 if ((events & EPOLLOUT) && in verify_epollio()
197 has_event(ret_evs, 2, fds[1], EPOLLOUT)) { in verify_epollio()
199 events &= ~EPOLLOUT; in verify_epollio()
Depoll_wait03.c48 {.events = EPOLLOUT}
/external/ltp/testcases/kernel/syscalls/epoll_ctl/
Depoll_ctl01.c33 {.events = EPOLLOUT},
85 events |= EPOLLOUT; in check_epoll_ctl()
106 if ((events & EPOLLOUT) && in check_epoll_ctl()
107 has_event(res_evs, 2, fd[1], EPOLLOUT)) { in check_epoll_ctl()
109 events &= ~EPOLLOUT; in check_epoll_ctl()
Depoll_ctl02.c43 {.events = EPOLLOUT},
/external/strace/xlat/
Depollevents.h20 #if defined(EPOLLOUT) || (defined(HAVE_DECL_EPOLLOUT) && HAVE_DECL_EPOLLOUT)
22 static_assert((EPOLLOUT) == (0x00000004), "EPOLLOUT != 0x00000004");
25 # define EPOLLOUT 0x00000004
131 XLAT(EPOLLOUT),
Depollevents.in3 EPOLLOUT 0x00000004
/external/ltp/testcases/kernel/syscalls/epoll2/include/
Depoll.h32 EPOLLOUT = 0x004, enumerator
33 #define EPOLLOUT EPOLLOUT macro
/external/wayland/src/
Devent-loop.c88 if (ep->events & EPOLLOUT) in wl_event_source_fd_dispatch()
121 ep.events |= EPOLLOUT; in add_source()
207 ep.events |= EPOLLOUT; in wl_event_source_fd_update()
/external/kernel-headers/original/uapi/linux/
Deventpoll.h33 #define EPOLLOUT (__force __poll_t)0x00000004 macro
/external/ltp/testcases/kernel/syscalls/epoll2/examples/
Depoll-test.c210 if (!(conn->events & EPOLLOUT)) { in eph_connect()
211 conn->events = EPOLLOUT | EPOLLERR | EPOLLHUP; in eph_connect()
250 if (!(conn->events & EPOLLOUT)) { in eph_write()
251 conn->events = EPOLLOUT | EPOLLERR | EPOLLHUP; in eph_write()
/external/linux-kselftest/tools/testing/selftests/kcmp/
Dkcmp_test.c62 ev.events = EPOLLIN | EPOLLOUT; in main()
/external/curl/docs/examples/
Dephiperfifo.c205 ((revents & EPOLLOUT) ? CURL_CSELECT_OUT : 0); in event_cb()
271 ((act & CURL_POLL_OUT) ? EPOLLOUT : 0); in setsock()
/external/python/cpython3/Lib/
Dselectors.py446 _EVENT_WRITE = select.EPOLLOUT
475 if event & ~select.EPOLLOUT:
/external/crosvm/sys_util/src/
Dpoll.rs18 c_int, epoll_create1, epoll_ctl, epoll_event, epoll_wait, EPOLLHUP, EPOLLIN, EPOLLOUT,
266 WatchingEvents(self.0 | EPOLLOUT as u32) in set_write()
/external/ltp/testcases/kernel/syscalls/epoll2/man/
Depoll_ctl.txt39 EPOLLOUT
Depoll.txt116 EPOLL_CTL_ADD ) once by specifying ( EPOLLIN|EPOLLOUT ). This allows
117 you to avoid continuously switching between EPOLLIN and EPOLLOUT call-
/external/ltp/testcases/kernel/syscalls/epoll/
Depoll-ltp.c419 (EPOLLOUT * ((index & 0x02) >> 1)) | in test_epoll_ctl()
/external/python/cpython2/Doc/library/
Dselect.rst127 | :const:`EPOLLOUT` | Available for write |
145 | :const:`EPOLLWRNORM` | Equivalent to :const:`EPOLLOUT` |
/external/grpc-grpc/src/core/lib/iomgr/
Dev_epoll1_linux.cc353 ev.events = static_cast<uint32_t>(EPOLLIN | EPOLLOUT | EPOLLET); in fd_create()
671 bool write_ev = (ev->events & EPOLLOUT) != 0; in process_epoll_events()
Dev_epollsig_linux.cc354 ev.events = static_cast<uint32_t>(EPOLLIN | EPOLLOUT | EPOLLET); in polling_island_add_fds_locked()
1259 bool write_ev = (ep_ev[i].events & EPOLLOUT) != 0;
/external/python/cpython2/Modules/
Dselectmodule.c935 unsigned int events = EPOLLIN | EPOLLOUT | EPOLLPRI; in pyepoll_register()
1914 PyModule_AddIntConstant(m, "EPOLLOUT", EPOLLOUT);

12