/openbmc/linux/fs/ |
H A D | eventpoll.c | 1718 struct epoll_event __user *events, int maxevents) in ep_send_events() argument 1746 if (res >= maxevents) in ep_send_events() 1867 int maxevents, struct timespec64 *timeout) in ep_poll() argument 1905 res = ep_send_events(ep, events, maxevents); in ep_poll() 2325 int maxevents, struct timespec64 *to) in do_epoll_wait() argument 2332 if (maxevents <= 0 || maxevents > EP_MAX_EVENTS) in do_epoll_wait() 2336 if (!access_ok(events, maxevents * sizeof(struct epoll_event))) in do_epoll_wait() 2359 error = ep_poll(ep, events, maxevents, to); in do_epoll_wait() 2367 int, maxevents, int, timeout) in SYSCALL_DEFINE4() argument 2371 return do_epoll_wait(epfd, events, maxevents, in SYSCALL_DEFINE4() [all …]
|
/openbmc/openbmc-tools/pwmtachtool/src/ |
H A D | EINTR_wrappers.h | 56 int sigwrap_epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout); 57 int sigwrap_epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const si…
|
H A D | EINTR_wrappers.c | 109 int sigwrap_epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) in sigwrap_epoll_wait() argument 125 int Result = epoll_wait(epfd, events, maxevents, timeout); in sigwrap_epoll_wait() 144 int sigwrap_epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const sig… in sigwrap_epoll_pwait() argument 160 int Result = epoll_pwait(epfd, events, maxevents, timeout, sigmask); in sigwrap_epoll_pwait()
|
/openbmc/openbmc-tools/adcapp/src/ |
H A D | EINTR_wrappers.h | 56 int sigwrap_epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout); 57 int sigwrap_epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const si…
|
H A D | EINTR_wrappers.c | 136 int sigwrap_epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) in sigwrap_epoll_wait() argument 152 int Result = epoll_wait(epfd, events, maxevents, timeout); in sigwrap_epoll_wait() 171 int sigwrap_epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const sig… in sigwrap_epoll_pwait() argument 187 int Result = epoll_pwait(epfd, events, maxevents, timeout, sigmask); in sigwrap_epoll_pwait()
|
/openbmc/linux/include/linux/ |
H A D | compat.h | 587 int maxevents, int timeout, 592 int maxevents,
|
H A D | syscalls.h | 365 int maxevents, int timeout, 369 int maxevents, 1052 int maxevents, int timeout);
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 708 int, maxevents, int, timeout, const sigset_t *, sigmask, in safe_syscall3() 13355 int maxevents = arg3; in _syscall2() 13358 if (maxevents <= 0 || maxevents > TARGET_EP_MAX_EVENTS) { in _syscall2() 13363 maxevents * sizeof(struct target_epoll_event), 1); in _syscall2() 13368 ep = g_try_new(struct epoll_event, maxevents); in _syscall2() 13387 ret = get_errno(safe_epoll_pwait(epfd, ep, maxevents, timeout, in _syscall2() 13398 ret = get_errno(safe_epoll_pwait(epfd, ep, maxevents, timeout, in _syscall2() 13352 int maxevents = arg3; _syscall2() local
|
/openbmc/linux/tools/testing/selftests/filesystems/epoll/ |
H A 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()
|