Lines Matching full:epds
2236 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds, in do_epoll_ctl() argument
2260 ep_take_care_of_epollwakeup(epds); in do_epoll_ctl()
2276 if (ep_op_has_event(op) && (epds->events & EPOLLEXCLUSIVE)) { in do_epoll_ctl()
2280 (epds->events & ~EPOLLEXCLUSIVE_OK_BITS))) in do_epoll_ctl()
2340 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2341 error = ep_insert(ep, epds, fd_file(tf), fd, full_check); in do_epoll_ctl()
2360 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2361 error = ep_modify(ep, epi, epds); in do_epoll_ctl()
2386 struct epoll_event epds; in SYSCALL_DEFINE4() local
2389 copy_from_user(&epds, event, sizeof(struct epoll_event))) in SYSCALL_DEFINE4()
2392 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()