Lines Matching refs:pfd
490 struct pollfd pfd;
492 pfd.fd = fd;
493 pfd.revents = 0;
494 pfd.events = POLLIN|POLLRDNORM|POLLERR;
497 retval = poll(&pfd, 1, timeout);
526 struct pollfd pfd;
527 pfd.fd = fd;
528 pfd.revents = 0;
529 pfd.events = POLLOUT;
530 retval = poll(&pfd, 1, timeout);
936 struct pollfd pfd;
952 memset(&pfd, 0, sizeof(pfd));
953 pfd.fd = fd;
954 pfd.events = POLLIN | POLLERR;
955 pfd.revents = 0;
961 poll(&pfd, 1, -1);