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()
1137 struct uv__io_uring_cqe* e; in uv__poll_io_uring() local
1155 e = &cqe[i & mask]; in uv__poll_io_uring()
1157 req = (uv_fs_t*) (uintptr_t) e->user_data; in uv__poll_io_uring()
1164 if (e->res == -EOPNOTSUPP) { in uv__poll_io_uring()
1170 req->result = e->res; in uv__poll_io_uring()
1221 struct epoll_event* e) { in uv__epoll_ctl_prep() argument
1234 *pe = *e; in uv__epoll_ctl_prep()
1326 struct epoll_event e; in uv__io_poll() local
1374 memset(&e, 0, sizeof(e)); in uv__io_poll()
1387 e.events = w->pevents; in uv__io_poll()
1388 e.data.fd = w->fd; in uv__io_poll()
1392 uv__epoll_ctl_prep(epollfd, ctl, &prep, op, fd, &e); in uv__io_poll()
1396 if (!epoll_ctl(epollfd, op, fd, &e)) in uv__io_poll()
1403 if (epoll_ctl(epollfd, EPOLL_CTL_MOD, fd, &e)) in uv__io_poll()
2519 const struct inotify_event* e; in uv__inotify_read() local
2543 for (p = buf; p < buf + size; p += sizeof(*e) + e->len) { in uv__inotify_read()
2544 e = (const struct inotify_event*) p; in uv__inotify_read()
2547 if (e->mask & (IN_ATTRIB|IN_MODIFY)) in uv__inotify_read()
2549 if (e->mask & ~(IN_ATTRIB|IN_MODIFY)) in uv__inotify_read()
2552 w = find_watcher(loop, e->wd); in uv__inotify_read()
2560 path = e->len ? (const char*) (e + 1) : uv__basename_r(w->path); in uv__inotify_read()