Lines Matching refs:epfd
2771 int SysEpollCtl(int epfd, int op, int fd, struct epoll_event *ev)
2779 epfd = GetAssociatedSystemFd(epfd);
2780 if ((fd < 0) || (epfd < 0)) {
2785 ret = epoll_ctl(epfd, op, fd, ev);
2796 int SysEpollWait(int epfd, struct epoll_event *evs, int maxevents, int timeout)
2803 epfd = GetAssociatedSystemFd(epfd);
2804 if (epfd < 0) {
2809 ret = epoll_wait(epfd, evs, maxevents, timeout);
2819 int SysEpollPwait(int epfd, struct epoll_event *evs, int maxevents, int timeout, const sigset_t *mask)
2837 epfd = GetAssociatedSystemFd(epfd);
2838 if (epfd < 0) {
2844 ret = epoll_wait(epfd, evs, maxevents, timeout);