Home
last modified time | relevance | path

Searched refs:pfd (Results 1 – 4 of 4) sorted by relevance

/libuv/src/unix/
H A Dos390-syscalls.c328 struct pollfd* pfd; in epoll_wait() local
330 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()
H A Dposix-poll.c79 struct pollfd pfd; in uv__pollfds_swap() local
80 pfd = loop->poll_fds[l]; in uv__pollfds_swap()
82 loop->poll_fds[r] = pfd; in uv__pollfds_swap()
H A Dcore.c731 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()
H A Dfs.c838 struct pollfd pfd; in uv__fs_sendfile_emul() local
924 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