Lines Matching full:pfd
491 struct pollfd pfd;
493 pfd.fd = fd;
494 pfd.revents = 0;
495 pfd.events = POLLIN|POLLRDNORM|POLLERR;
498 retval = poll(&pfd, 1, timeout);
535 struct pollfd pfd;
536 pfd.fd = fd;
537 pfd.revents = 0;
538 pfd.events = POLLOUT;
539 retval = poll(&pfd, 1, timeout);
955 struct pollfd pfd;
971 memset(&pfd, 0, sizeof(pfd));
972 pfd.fd = fd;
973 pfd.events = POLLIN | POLLERR;
974 pfd.revents = 0;
980 poll(&pfd, 1, -1);