Lines Matching refs:e

289                                struct epoll_event* e);
507 struct epoll_event e; in uv__iou_init() local
578 memset(&e, 0, sizeof(e)); in uv__iou_init()
579 e.events = POLLIN; in uv__iou_init()
580 e.data.fd = ringfd; in uv__iou_init()
582 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, ringfd, &e)) in uv__iou_init()
730 struct epoll_event e; in uv__io_check_fd() local
733 memset(&e, 0, sizeof(e)); in uv__io_check_fd()
734 e.events = POLLIN; in uv__io_check_fd()
735 e.data.fd = -1; in uv__io_check_fd()
738 if (epoll_ctl(loop->backend_fd, EPOLL_CTL_ADD, fd, &e)) in uv__io_check_fd()
743 if (epoll_ctl(loop->backend_fd, EPOLL_CTL_DEL, fd, &e)) in uv__io_check_fd()
1145 struct uv__io_uring_cqe* e; in uv__poll_io_uring() local
1163 e = &cqe[i & mask]; in uv__poll_io_uring()
1165 req = (uv_fs_t*) (uintptr_t) e->user_data; in uv__poll_io_uring()
1172 if (e->res == -EOPNOTSUPP) { in uv__poll_io_uring()
1178 req->result = e->res; in uv__poll_io_uring()
1229 struct epoll_event* e) { in uv__epoll_ctl_prep() argument
1242 *pe = *e; in uv__epoll_ctl_prep()
1334 struct epoll_event e; in uv__io_poll() local
1382 memset(&e, 0, sizeof(e)); in uv__io_poll()
1395 e.events = w->pevents; in uv__io_poll()
1401 e.events |= EPOLLET; in uv__io_poll()
1402 e.data.fd = w->fd; in uv__io_poll()
1406 uv__epoll_ctl_prep(epollfd, ctl, &prep, op, fd, &e); in uv__io_poll()
1410 if (!epoll_ctl(epollfd, op, fd, &e)) in uv__io_poll()
1417 if (epoll_ctl(epollfd, EPOLL_CTL_MOD, fd, &e)) in uv__io_poll()
2533 const struct inotify_event* e; in uv__inotify_read() local
2557 for (p = buf; p < buf + size; p += sizeof(*e) + e->len) { in uv__inotify_read()
2558 e = (const struct inotify_event*) p; in uv__inotify_read()
2561 if (e->mask & (IN_ATTRIB|IN_MODIFY)) in uv__inotify_read()
2563 if (e->mask & ~(IN_ATTRIB|IN_MODIFY)) in uv__inotify_read()
2566 w = find_watcher(loop, e->wd); in uv__inotify_read()
2574 path = e->len ? (const char*) (e + 1) : uv__basename_r(w->path); in uv__inotify_read()