Lines Matching refs:epfd

2289 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds,  in do_epoll_ctl()  argument
2298 CLASS(fd, f)(epfd); in do_epoll_ctl()
2436 SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd, in SYSCALL_DEFINE4() argument
2445 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()
2452 static int do_epoll_wait(int epfd, struct epoll_event __user *events, in do_epoll_wait() argument
2466 CLASS(fd, f)(epfd); in do_epoll_wait()
2487 SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events, in SYSCALL_DEFINE4() argument
2492 return do_epoll_wait(epfd, events, maxevents, in SYSCALL_DEFINE4()
2500 static int do_epoll_pwait(int epfd, struct epoll_event __user *events, in do_epoll_pwait() argument
2514 error = do_epoll_wait(epfd, events, maxevents, to); in do_epoll_pwait()
2521 SYSCALL_DEFINE6(epoll_pwait, int, epfd, struct epoll_event __user *, events, in SYSCALL_DEFINE6() argument
2527 return do_epoll_pwait(epfd, events, maxevents, in SYSCALL_DEFINE6()
2532 SYSCALL_DEFINE6(epoll_pwait2, int, epfd, struct epoll_event __user *, events, in SYSCALL_DEFINE6() argument
2546 return do_epoll_pwait(epfd, events, maxevents, to, in SYSCALL_DEFINE6()
2551 static int do_compat_epoll_pwait(int epfd, struct epoll_event __user *events, in do_compat_epoll_pwait() argument
2566 err = do_epoll_wait(epfd, events, maxevents, timeout); in do_compat_epoll_pwait()
2573 COMPAT_SYSCALL_DEFINE6(epoll_pwait, int, epfd, in COMPAT_SYSCALL_DEFINE6() argument
2581 return do_compat_epoll_pwait(epfd, events, maxevents, in COMPAT_SYSCALL_DEFINE6()
2586 COMPAT_SYSCALL_DEFINE6(epoll_pwait2, int, epfd, in COMPAT_SYSCALL_DEFINE6() argument
2603 return do_compat_epoll_pwait(epfd, events, maxevents, to, in COMPAT_SYSCALL_DEFINE6()