Lines Matching refs:fd
71 pollFd.fd = mFeFd; in isFeLocked()
312 int fd = (int) env->CallIntMethod(thiz, mOpenDvbFrontEndMethodID); in openDvbFeFromSystemApi() local
313 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); in openDvbFeFromSystemApi()
314 return fd; in openDvbFeFromSystemApi()
318 int fd = (int) env->CallIntMethod(thiz, mOpenDvbDemuxMethodID); in openDvbDemuxFromSystemApi() local
319 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); in openDvbDemuxFromSystemApi()
320 return fd; in openDvbDemuxFromSystemApi()
324 int fd = (int) env->CallIntMethod(thiz, mOpenDvbDvrMethodID); in openDvbDvrFromSystemApi() local
325 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); in openDvbDvrFromSystemApi()
326 return fd; in openDvbDvrFromSystemApi()
489 pollFd.fd = mDvrFd; in readTsStream()