Home
last modified time | relevance | path

Searched refs:maxevents (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/fs/
H A Deventpoll.c1718 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 DEINTR_wrappers.h56 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 DEINTR_wrappers.c109 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 DEINTR_wrappers.h56 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 DEINTR_wrappers.c136 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 Dcompat.h587 int maxevents, int timeout,
592 int maxevents,
H A Dsyscalls.h365 int maxevents, int timeout,
369 int maxevents,
1052 int maxevents, int timeout);
/openbmc/qemu/linux-user/
H A Dsyscall.c708 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 Depoll_wakeup_test.c31 int maxevents, in sys_epoll_pwait2() argument
35 return syscall(__NR_epoll_pwait2, fd, events, maxevents, timeout, in sys_epoll_pwait2()