Lines Matching refs:epoll_fd
39 int epoll_fd;
51 int epoll_fd;
153 if (epoll_ctl(rb->epoll_fd, EPOLL_CTL_ADD, map_fd, e) < 0) {
174 if (rb->epoll_fd >= 0)
175 close(rb->epoll_fd);
198 rb->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
199 if (rb->epoll_fd < 0) {
302 cnt = epoll_wait(rb->epoll_fd, rb->events, rb->ring_cnt, timeout_ms);
323 return rb->epoll_fd;
345 if (rb->epoll_fd >= 0)
346 close(rb->epoll_fd);
411 if (epoll_ctl(rb->epoll_fd, EPOLL_CTL_ADD, map_fd, rb_epoll) < 0) {
435 rb->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
436 if (rb->epoll_fd < 0) {
570 cnt = epoll_wait(rb->epoll_fd, &rb->event, 1, ms_remaining);