Lines Matching refs:epds
2157 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds, in do_epoll_ctl() argument
2184 ep_take_care_of_epollwakeup(epds); in do_epoll_ctl()
2200 if (ep_op_has_event(op) && (epds->events & EPOLLEXCLUSIVE)) { in do_epoll_ctl()
2204 (epds->events & ~EPOLLEXCLUSIVE_OK_BITS))) in do_epoll_ctl()
2276 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2277 error = ep_insert(ep, epds, tf.file, fd, full_check); in do_epoll_ctl()
2290 epds->events |= EPOLLERR | EPOLLHUP; in do_epoll_ctl()
2291 error = ep_modify(ep, epi, epds); in do_epoll_ctl()
2324 struct epoll_event epds; in SYSCALL_DEFINE4() local
2327 copy_from_user(&epds, event, sizeof(struct epoll_event))) in SYSCALL_DEFINE4()
2330 return do_epoll_ctl(epfd, op, fd, &epds, false); in SYSCALL_DEFINE4()