Lines Matching defs:epoll_fd
39 int epoll_fd;
51 int epoll_fd;
157 if (epoll_ctl(rb->epoll_fd, EPOLL_CTL_ADD, map_fd, e) < 0) {
181 if (rb->epoll_fd >= 0)
182 close(rb->epoll_fd);
205 rb->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
206 if (rb->epoll_fd < 0) {
309 cnt = epoll_wait(rb->epoll_fd, rb->events, rb->ring_cnt, timeout_ms);
330 return rb->epoll_fd;
404 if (rb->epoll_fd >= 0)
405 close(rb->epoll_fd);
470 if (epoll_ctl(rb->epoll_fd, EPOLL_CTL_ADD, map_fd, rb_epoll) < 0) {
494 rb->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
495 if (rb->epoll_fd < 0) {
629 cnt = epoll_wait(rb->epoll_fd, &rb->event, 1, ms_remaining);