Lines Matching refs:epds
2153 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds, in do_epoll_ctl() argument
2180 ep_take_care_of_epollwakeup(epds); in do_epoll_ctl()
2196 if (ep_op_has_event(op) && (epds->events & EPOLLEXCLUSIVE)) { in do_epoll_ctl()
2200 (epds->events & ~EPOLLEXCLUSIVE_OK_BITS))) in do_epoll_ctl()
2272 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2273 error = ep_insert(ep, epds, tf.file, fd, full_check); in do_epoll_ctl()
2286 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2287 error = ep_modify(ep, epi, epds); in do_epoll_ctl()
2320 struct epoll_event epds; in SYSCALL_DEFINE4() local
2323 copy_from_user(&epds, event, sizeof(struct epoll_event))) in SYSCALL_DEFINE4()
2326 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()