Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dsys_epoll.cpp52 int epoll_pwait(int fd, epoll_event* events, int max_events, int timeout, const sigset_t* ss) { in epoll_pwait() argument
54 return epoll_pwait64(fd, events, max_events, timeout, set.ptr); in epoll_pwait()
57 int epoll_pwait64(int fd, epoll_event* events, int max_events, int timeout, const sigset64_t* ss) { in epoll_pwait64() argument
58 return __epoll_pwait(fd, events, max_events, timeout, ss, sizeof(*ss)); in epoll_pwait64()
61 int epoll_pwait2(int fd, epoll_event* events, int max_events, const timespec* timeout, in epoll_pwait2() argument
64 return epoll_pwait2_64(fd, events, max_events, timeout, set.ptr); in epoll_pwait2()
67 int epoll_pwait2_64(int fd, epoll_event* events, int max_events, const timespec* timeout, in epoll_pwait2_64() argument
83 return __epoll_pwait2(fd, events, max_events, kts_ptr, ss, sizeof(*ss)); in epoll_pwait2_64()
86 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) { in epoll_wait() argument
87 return epoll_pwait64(fd, events, max_events, timeout, nullptr); in epoll_wait()