Lines Matching refs:epfd
2153 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds, in do_epoll_ctl() argument
2164 f = fdget(epfd); in do_epoll_ctl()
2317 SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd, in SYSCALL_DEFINE4() argument
2326 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()
2333 static int do_epoll_wait(int epfd, struct epoll_event __user *events, in do_epoll_wait() argument
2349 f = fdget(epfd); in do_epoll_wait()
2375 SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events, in SYSCALL_DEFINE4() argument
2378 return do_epoll_wait(epfd, events, maxevents, timeout); in SYSCALL_DEFINE4()
2385 SYSCALL_DEFINE6(epoll_pwait, int, epfd, struct epoll_event __user *, events, in SYSCALL_DEFINE6() argument
2399 error = do_epoll_wait(epfd, events, maxevents, timeout); in SYSCALL_DEFINE6()
2406 COMPAT_SYSCALL_DEFINE6(epoll_pwait, int, epfd, in COMPAT_SYSCALL_DEFINE6() argument
2422 err = do_epoll_wait(epfd, events, maxevents, timeout); in COMPAT_SYSCALL_DEFINE6()