Lines Matching refs:pollFd
70 struct pollfd pollFd; in isFeLocked() local
71 pollFd.fd = mFeFd; in isFeLocked()
72 pollFd.events = POLLIN; in isFeLocked()
73 pollFd.revents = 0; in isFeLocked()
74 int poll_result = poll(&pollFd, NUM_POLLFDS, FE_POLL_TIMEOUT_MS); in isFeLocked()
75 if (poll_result > 0 && (pollFd.revents & POLLIN)) { in isFeLocked()
488 struct pollfd pollFd; in readTsStream() local
489 pollFd.fd = mDvrFd; in readTsStream()
490 pollFd.events = POLLIN|POLLPRI|POLLERR; in readTsStream()
491 pollFd.revents = 0; in readTsStream()
492 int poll_result = poll(&pollFd, NUM_POLLFDS, timeout_ms); in readTsStream()
495 } else if (poll_result == -1 || pollFd.revents & POLLERR) { in readTsStream()