Searched refs:pfd (Results 1 – 4 of 4) sorted by relevance
328 struct pollfd* pfd; in epoll_wait() local330 pfd = &pfds[i]; in epoll_wait()331 if (pfd->fd == -1 || pfd->revents == 0) in epoll_wait()334 ev.fd = pfd->fd; in epoll_wait()335 ev.events = pfd->revents; in epoll_wait()
79 struct pollfd pfd; in uv__pollfds_swap() local80 pfd = loop->poll_fds[l]; in uv__pollfds_swap()82 loop->poll_fds[r] = pfd; in uv__pollfds_swap()
731 int* pfd; in uv__recvmsg()741 for (pfd = (int*) CMSG_DATA(cmsg), in uv__recvmsg()743 pfd < end; in uv__recvmsg()744 pfd += 1) in uv__recvmsg()745 uv__cloexec(*pfd, 1); in uv__recvmsg()
838 struct pollfd pfd; in uv__fs_sendfile_emul() local924 pfd.fd = out_fd; in uv__fs_sendfile_emul()925 pfd.events = POLLOUT; in uv__fs_sendfile_emul()926 pfd.revents = 0; in uv__fs_sendfile_emul()929 n = poll(&pfd, 1, -1); in uv__fs_sendfile_emul()932 if (n == -1 || (pfd.revents & ~POLLOUT) != 0) { in uv__fs_sendfile_emul()
Completed in 15 milliseconds