HomeSort by relevance Sort by last modified time
    Searched refs:epoll_wait (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/ltp/testcases/kernel/syscalls/epoll2/man/
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
  /bionic/libc/include/sys/
epoll.h 59 int epoll_wait(int __epoll_fd, struct epoll_event* __events, int __event_count, int __timeout_ms);
  /external/ltp/testcases/kernel/syscalls/epoll2/src/
epoll.c 21 #define __sys_epoll_wait(epfd, pevents, maxevents, timeout) _syscall4(int, epoll_wait, \
  /system/tpm/attestation/server/
attestationd-seccomp-amd64.policy 42 epoll_wait: 1
  /system/tpm/tpm_manager/server/
tpm_managerd-seccomp-amd64.policy 43 epoll_wait: 1
  /system/tpm/trunks/
trunksd-seccomp-amd64.policy 32 epoll_wait: 1
trunksd-seccomp-x86.policy 32 epoll_wait: 1
trunksd-seccomp-x86_64.policy 32 epoll_wait: 1
  /bionic/libc/bionic/
sys_epoll.cpp 59 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) { function
  /external/libevent/
epoll_sub.c 59 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) function
  /external/ltp/testcases/kernel/syscalls/epoll_wait/
epoll_wait02.c 21 * Check that epoll_wait(2) timeouts correctly.
40 TEST(epoll_wait(epfd, epevs, 1, sleep_ms));
46 "epoll_wait() returned %li", TEST_RETURN);
80 .scall = "epoll_wait()",
epoll_wait01.c 21 * Basic test for epoll_wait(2).
22 * Check that epoll_wait(2) works for EPOLLOUT and EPOLLIN events
112 TEST(epoll_wait(epfd, &ret_evs, 1, -1));
115 tst_res(TFAIL | TTERRNO, "epoll_wait() epollout failed");
120 tst_res(TFAIL, "epoll_wait() returned %li, expected 1",
137 tst_res(TPASS, "epoll_wait() epollout");
150 TEST(epoll_wait(epfd, &ret_evs, 1, -1));
153 tst_res(TFAIL | TTERRNO, "epoll_wait() epollin failed");
158 tst_res(TFAIL, "epoll_wait() returned %li, expected 1",
175 tst_res(TPASS, "epoll_wait() epollin")
    [all...]
epoll_wait03.c 21 * 1) epoll_wait(2) fails if epfd is not a valid file descriptor
22 * 2) epoll_wait(2) fails if epfd is not an epoll file descriptor
23 * 3) epoll_wait(2) fails if maxevents is less than zero
24 * 4) epoll_wait(2) fails if maxevents is equal to zero
25 * 5) epoll_wait(2) fails if the memory area pointed to by events
29 * 1) epoll_wait(2) should return -1 and set errno to EBADF
30 * 2) epoll_wait(2) should return -1 and set errno to EINVAL
31 * 3) epoll_wait(2) should return -1 and set errno to EINVAL
32 * 4) epoll_wait(2) should return -1 and set errno to EINVAL
33 * 5) epoll_wait(2) should return -1 and set errno to EFAUL
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
epoll_file_descriptor.h 47 int ret = epoll_wait(fd_.get(), events, maxevents, timeout);
  /bionic/tests/
sys_epoll_test.cpp 32 // Regular epoll_wait.
33 ASSERT_EQ(0, epoll_wait(epoll_fd, events, 1, 1));
35 // epoll_pwait without a sigset (which is equivalent to epoll_wait).
39 // epoll_pwait64 without a sigset (which is equivalent to epoll_wait).
76 ASSERT_EQ(1, epoll_wait(epoll_fd, events, 1, 1));
  /external/ltp/testcases/kernel/syscalls/epoll2/include/
epoll.h 114 extern int epoll_wait (int __epfd, struct epoll_event *__events,
  /external/strace/
epoll.c 102 SYS_FUNC(epoll_wait)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
epoll.h 129 extern int epoll_wait (int __epfd, struct epoll_event *__events,
133 /* Same as epoll_wait, but the thread's signal mask is temporarily
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
epoll.h 129 extern int epoll_wait (int __epfd, struct epoll_event *__events,
133 /* Same as epoll_wait, but the thread's signal mask is temporarily
  /system/core/libappfuse/
EpollController.cc 29 const int result = TEMP_FAILURE_RETRY(epoll_wait(poll_fd_, events_.data(), event_count, -1));
  /frameworks/native/libs/vr/libpdx/
service_dispatcher.cpp 117 int count = epoll_wait(epoll_fd_.Get(), events, kMaxEventsPerLoop, timeout);
150 int count = epoll_wait(epoll_fd_.Get(), events, kMaxEventsPerLoop, -1);
  /libcore/ojluni/src/main/native/
EPoll.c 92 RESTARTABLE(epoll_wait(epfd, events, numfds, -1), res);
94 JNU_ThrowIOExceptionWithLastError(env, "epoll_wait failed");
  /external/ltp/testcases/kernel/syscalls/epoll_ctl/
epoll_ctl01.c 23 * associates event with fd, epoll_wait(2) will get registered fd and
26 * epoll_wait(2) will get chaged event correctly.
28 * epoll_wait(2) won't get deregistered fd and event.
103 res = epoll_wait(epfd, res_evs, 2, -1);
105 tst_res(TFAIL | TERRNO, "epoll_wait() returned %i",
124 "epoll_wait() returned unexpected events");
  /external/strace/linux/aarch64/
syscallent.h 61 [1069] = { 4, TD, SEN(epoll_wait), "epoll_wait" },
  /frameworks/native/libs/vr/libvrflinger/
epoll_event_dispatcher.cpp 100 const int num_events = epoll_wait(epoll_fd_.Get(), events, kMaxNumEvents, -1);
129 // stay alive between exiting epoll_wait() and the dispatch loop above.

Completed in 997 milliseconds

1 2 3 4