Lines Matching refs:m_fd
78 m_fd = open(filename, O_RDWR); in Open()
79 if (m_fd < 0) in Open()
85 rc = ioctl(m_fd, HIDIOCGRDESCSIZE, &desc_size); in Open()
90 rc = ioctl(m_fd, HIDIOCGRDESC, &m_rptDesc); in Open()
94 rc = ioctl(m_fd, HIDIOCGRAWINFO, &m_info); in Open()
263 count = write(m_fd, m_outputReport + bytesWritten, in Read()
316 count = write(m_fd, m_outputReport, m_outputReportSize); in Write()
337 rc = ioctl(m_fd, HIDIOCSFEATURE(2), buf); in SetMode()
353 close(m_fd); in Close()
354 m_fd = -1; in Close()
426 FD_SET(m_fd, &fds); in GetReport()
428 rc = select(m_fd + 1, &fds, NULL, NULL, timeout); in GetReport()
436 } else if (rc > 0 && FD_ISSET(m_fd, &fds)) { in GetReport()
440 count = read(m_fd, m_inputReport + offset, m_inputReportSize - offset); in GetReport()