Searched refs:epoll_wait (Results 1 – 25 of 98) sorted by relevance
1234
/external/ltp/testcases/kernel/syscalls/epoll2/man/ |
D | epoll_wait.txt | 6 epoll_wait - wait for an I/O event on an epoll file descriptor 11 int epoll_wait(int epfd, struct epoll_event * events, int maxevents, 18 returned by epoll_wait(2). The maxevents parameter must be greater 19 than zero. Specifying a timeout of -1 makes epoll_wait(2) wait indefi- 20 nitely, while specifying a timeout equal to zero makes epoll_wait(2) to 43 When successful, epoll_wait(2) returns the number of file descriptors 46 epoll_wait(2) returns -1 and errno is set appropriately. 59 epoll_wait(2) is a new API introduced in Linux kernel 2.5.44. The
|
D | mkpages.sh | 6 groff -t -e -mandoc -Tascii epoll_wait.2 | col -bx > epoll_wait.txt 10 groff -t -e -mandoc -Tps epoll_wait.2 > epoll_wait.ps
|
D | epoll.txt | 15 epoll_create(2), epoll_ctl(2), epoll_wait(2). 19 epoll_ctl(2). Finally, the actual wait is started by epoll_wait(2). 33 3 A call to epoll_wait(2) is done that will return RFD as ready 38 5 A call to epoll_wait(2) is done. 42 the EPOLLET flag, the call to epoll_wait(2) done in step 5 will proba- 51 consume the whole buffer data, the call to epoll_wait(2) done in step 5 70 receival of an event with epoll_wait(2). When the EPOLLONESHOT flag is 90 nfds = epoll_wait(kdpfd, events, maxevents, -1); 151 Q7 If more than one event comes in between epoll_wait(2) calls, are 165 A9 No you don't. Receiving an event from epoll_wait(2) should sug- [all …]
|
D | epoll_ctl.txt | 59 It means that after an event is pulled out with epoll_wait(2) 103 epoll(4) epoll_create(2) epoll_wait(2)
|
D | epoll_create.txt | 35 epoll(4) epoll_ctl(2) epoll_wait(2) close(2)
|
/external/ltp/testcases/kernel/syscalls/epoll_wait/ |
D | epoll_wait01.c | 112 TEST(epoll_wait(epfd, &ret_evs, 1, -1)); in verify_epollout() 150 TEST(epoll_wait(epfd, &ret_evs, 1, -1)); in verify_epollin() 194 TEST(epoll_wait(epfd, ret_evs, 2, -1)); in verify_epollio()
|
D | epoll_wait02.c | 40 TEST(epoll_wait(epfd, epevs, 1, sleep_ms)); in sample_fn()
|
D | epoll_wait03.c | 127 TEST(epoll_wait(*(tc->epfd), *(tc->ev), tc->maxevents, -1)); in verify_epoll_wait()
|
/external/ltp/testcases/kernel/syscalls/epoll2/src/ |
D | epoll.c | 21 #define __sys_epoll_wait(epfd, pevents, maxevents, timeout) _syscall4(int, epoll_wait, \
|
/external/libevent/ |
D | epoll_sub.c | 59 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) in epoll_wait() function
|
/external/grpc-grpc/doc/ |
D | epoll-polling-engine.md | 34 …epoll_wait()`, we are guaranteed that only one thread is woken up if one of the `fds` in the set b… 95 … to use a `poll()` (on `event_fd` and `epoll_fd`) instead of doing an `epoll_wait()` and this resu… 107 …can implement a turnstile polling (i.e having only one thread calling `epoll_wait()` on the epoll … 117 …st in the epoll set, they then call a non-blocking i.e a zero-timeout `epoll_wait()` on the `epoll…
|
/external/ltp/testcases/kernel/syscalls/epoll2/include/ |
D | epoll.h | 116 extern int epoll_wait (int __epfd, struct epoll_event *__events,
|
/external/grpc-grpc/test/cpp/microbenchmarks/ |
D | bm_pollset.cc | 90 epoll_wait(epfd, ev, nev, 0); in BM_PollEmptyPollset_SpeedOfLight() 200 err = epoll_wait(epfd, ev, GPR_ARRAY_SIZE(ev), 0); in BM_SingleThreadPollOneFd_SpeedOfLight()
|
/external/strace/ |
D | epoll.c | 102 SYS_FUNC(epoll_wait) in SYS_FUNC() argument
|
/external/adhd/seccomp/ |
D | cras-seccomp-amd64.policy | 65 epoll_wait: 1
|
D | cras-seccomp-arm.policy | 24 epoll_wait: 1
|
/external/ltp/testcases/kernel/syscalls/epoll_ctl/ |
D | epoll_ctl01.c | 103 res = epoll_wait(epfd, res_evs, 2, -1); in check_epoll_ctl()
|
/external/strace/linux/aarch64/ |
D | syscallent.h | 63 [1069] = { 4, TD, SEN(epoll_wait), "epoll_wait" },
|
/external/ltp/include/lapi/syscalls/ |
D | ia64.in | 215 epoll_wait 1245
|
D | sparc64.in | 177 epoll_wait 195
|
D | x86_64.in | 231 epoll_wait 232
|
D | i386.in | 251 epoll_wait 256
|
D | s390.in | 175 epoll_wait 251
|
D | powerpc.in | 234 epoll_wait 238
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | reuseport_dualstack.c | 108 i = epoll_wait(epfd, &ev, 1, -1); in receive_once()
|
1234