/external/ltp/include/lapi/ |
D | epoll.h | 25 int maxevents, int timeout, in epoll_pwait() argument 28 return tst_syscall(__NR_epoll_pwait, epfd, events, maxevents, in epoll_pwait() 41 int maxevents, const struct timespec *timeout, in epoll_pwait2() argument 45 return tst_syscall(__NR_epoll_pwait2, epfd, events, maxevents, in epoll_pwait2() 53 return tst_syscall(__NR_epoll_pwait2, epfd, events, maxevents, in epoll_pwait2()
|
/external/ltp/testcases/kernel/syscalls/epoll_pwait/ |
D | epoll_pwait_var.h | 17 maxevents, int timeout, const sigset_t *sigmask) in do_epoll_pwait() argument 20 return epoll_pwait(epfd, events, maxevents, timeout, sigmask); in do_epoll_pwait() 25 return epoll_pwait2(epfd, events, maxevents, NULL, sigmask); in do_epoll_pwait() 31 return epoll_pwait2(epfd, events, maxevents, &ts, sigmask); in do_epoll_pwait()
|
/external/libevent/ |
D | epoll_sub.c | 59 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) in epoll_wait() argument 62 return (syscall(__NR_epoll_pwait, epfd, events, maxevents, timeout, NULL, 0)); in epoll_wait() 64 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout)); in epoll_wait()
|
/external/ltp/include/ |
D | tst_epoll.h | 31 int maxevents, int timeout); 33 #define SAFE_EPOLL_WAIT(epfd, events, maxevents, timeout)\ argument 34 safe_epoll_wait(__FILE__, __LINE__, epfd, events, maxevents, timeout)
|
/external/ltp/lib/ |
D | tst_epoll.c | 69 int maxevents, int timeout) in safe_epoll_wait() argument 71 int ret = epoll_wait(epfd, events, maxevents, timeout); in safe_epoll_wait() 76 epfd, maxevents, timeout); in safe_epoll_wait()
|
/external/ltp/android/include/ |
D | libaio.h | 69 static inline int libaio_setup(int maxevents, io_context_t *ctxp) { in libaio_setup() argument 70 int ret = io_setup(maxevents, ctxp); in libaio_setup() 99 static inline int io_queue_init(int maxevents, io_context_t *ctxp) { in io_queue_init() argument 101 return libaio_setup(maxevents, ctxp); in io_queue_init()
|
/external/python/cpython3/Modules/clinic/ |
D | selectmodule.c.h | 810 int maxevents); 821 int maxevents = -1; in select_epoll_poll() local 836 maxevents = _PyLong_AsInt(args[1]); in select_epoll_poll() 837 if (maxevents == -1 && PyErr_Occurred()) { in select_epoll_poll() 841 return_value = select_epoll_poll_impl(self, timeout_obj, maxevents); in select_epoll_poll() 1060 int maxevents, PyObject *otimeout); 1067 int maxevents; in select_kqueue_control() local 1074 maxevents = _PyLong_AsInt(args[1]); in select_kqueue_control() 1075 if (maxevents == -1 && PyErr_Occurred()) { in select_kqueue_control() 1083 return_value = select_kqueue_control_impl(self, changelist, maxevents, otimeout); in select_kqueue_control()
|
/external/cronet/third_party/libevent/ |
D | epoll_sub.c | 49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) in epoll_wait() argument 51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout)); in epoll_wait()
|
/external/ltp/testcases/kernel/syscalls/epoll_wait/ |
D | epoll_wait03.c | 36 int maxevents; member 65 TST_EXP_FAIL(epoll_wait(*tc[n].epfd, *tc[n].ev, tc[n].maxevents, -1), in verify_epoll_wait()
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 1517 int maxevents) in select_epoll_poll_impl() argument 1561 if (maxevents == -1) { in select_epoll_poll_impl() 1562 maxevents = FD_SETSIZE-1; in select_epoll_poll_impl() 1564 else if (maxevents < 1) { in select_epoll_poll_impl() 1567 maxevents); in select_epoll_poll_impl() 1571 evs = PyMem_New(struct epoll_event, maxevents); in select_epoll_poll_impl() 1580 nfds = epoll_wait(self->epfd, evs, maxevents, (int)ms); in select_epoll_poll_impl() 2090 int maxevents, PyObject *otimeout) in select_kqueue_control_impl() argument 2108 if (maxevents < 0) { in select_kqueue_control_impl() 2111 maxevents); in select_kqueue_control_impl() [all …]
|
/external/python/cpython2/Modules/ |
D | selectmodule.c | 1001 int maxevents = -1; in pyepoll_poll() local 1011 &dtimeout, &maxevents)) { in pyepoll_poll() 1027 if (maxevents == -1) { in pyepoll_poll() 1028 maxevents = FD_SETSIZE-1; in pyepoll_poll() 1030 else if (maxevents < 1) { in pyepoll_poll() 1033 maxevents); in pyepoll_poll() 1037 evs = PyMem_New(struct epoll_event, maxevents); in pyepoll_poll() 1045 nfds = epoll_wait(self->epfd, evs, maxevents, timeout); in pyepoll_poll()
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 1213 #define __sanitizer_syscall_pre_epoll_wait(epfd, events, maxevents, timeout) \ argument 1215 (long)(maxevents), (long)(timeout)) 1216 #define __sanitizer_syscall_post_epoll_wait(res, epfd, events, maxevents, \ argument 1219 (long)(maxevents), (long)(timeout)) 1220 #define __sanitizer_syscall_pre_epoll_pwait(epfd, events, maxevents, timeout, \ argument 1223 (long)(epfd), (long)(events), (long)(maxevents), (long)(timeout), \ 1225 #define __sanitizer_syscall_post_epoll_pwait(res, epfd, events, maxevents, \ argument 1228 res, (long)(epfd), (long)(events), (long)(maxevents), (long)(timeout), \ 2692 long maxevents, long timeout); 2694 long maxevents, long timeout); [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_epoll.py | 168 events = ep.poll(timeout=2.1, maxevents=4)
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 879 INTERCEPTOR(int, epoll_wait, int epfd, void *events, int maxevents, in INTERCEPTOR() argument 882 int res = REAL(epoll_wait)(epfd, events, maxevents, timeout); in INTERCEPTOR() 894 INTERCEPTOR(int, epoll_pwait, int epfd, void *events, int maxevents, in INTERCEPTOR() argument 897 int res = REAL(epoll_pwait)(epfd, events, maxevents, timeout, sigmask); in INTERCEPTOR()
|
/external/python/cpython3/Lib/test/ |
D | test_epoll.py | 182 events = ep.poll(timeout=0.1, maxevents=4)
|
/external/python/cpython2/Doc/library/ |
D | select.rst | 188 .. method:: epoll.poll([timeout=-1[, maxevents=-1]])
|
/external/rust/crates/libc/src/unix/redox/ |
D | mod.rs | 1042 maxevents: ::c_int, in epoll_wait()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 1944 PRE_SYSCALL(epoll_wait)(long epfd, void *events, long maxevents, long timeout) { 1947 POST_SYSCALL(epoll_wait)(long res, long epfd, void *events, long maxevents, 1954 PRE_SYSCALL(epoll_pwait)(long epfd, void *events, long maxevents, long timeout, 1959 POST_SYSCALL(epoll_pwait)(long res, long epfd, void *events, long maxevents,
|
/external/python/cpython3/Doc/library/ |
D | select.rst | 362 .. method:: epoll.poll(timeout=None, maxevents=-1)
|
/external/linux-kselftest/tools/testing/selftests/filesystems/epoll/ |
D | epoll_wakeup_test.c | 31 int maxevents, in sys_epoll_pwait2() argument 35 return syscall(__NR_epoll_pwait2, fd, events, maxevents, timeout, in sys_epoll_pwait2()
|
/external/rust/crates/libc/src/unix/solarish/ |
D | mod.rs | 2957 maxevents: ::c_int, in epoll_pwait() 2967 maxevents: ::c_int, in epoll_wait()
|
/external/rust/crates/libc/src/unix/linux_like/linux/ |
D | mod.rs | 3985 maxevents: ::c_int, in epoll_pwait() 4093 maxevents: ::c_int, in epoll_wait()
|
/external/rust/crates/libc/src/unix/linux_like/android/ |
D | mod.rs | 3228 maxevents: ::c_int, in epoll_wait()
|
/external/bcc/libbpf-tools/powerpc/ |
D | vmlinux_510.h | 72442 int maxevents; member
|
D | vmlinux.h | 72442 int maxevents; member
|