Lines Matching refs:epds
2108 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds, in do_epoll_ctl() argument
2135 ep_take_care_of_epollwakeup(epds); in do_epoll_ctl()
2151 if (ep_op_has_event(op) && (epds->events & EPOLLEXCLUSIVE)) { in do_epoll_ctl()
2155 (epds->events & ~EPOLLEXCLUSIVE_OK_BITS))) in do_epoll_ctl()
2227 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2228 error = ep_insert(ep, epds, tf.file, fd, full_check); in do_epoll_ctl()
2241 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2242 error = ep_modify(ep, epi, epds); in do_epoll_ctl()
2275 struct epoll_event epds; in SYSCALL_DEFINE4() local
2278 copy_from_user(&epds, event, sizeof(struct epoll_event))) in SYSCALL_DEFINE4()
2281 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()