Lines Matching defs:hDevice
117 int hDevice = open(pszDeviceNm, O_RDWR, 0);
118 if (hDevice < 0)
136 if (fcntl(hDevice, F_SETFD, FD_CLOEXEC) != 0)
145 close(hDevice);
149 pThis->hDevice = hDevice;
174 if (pThis->hDevice != (intptr_t)NIL_RTFILE)
176 if (close(pThis->hDevice))
178 pThis->hDevice = (intptr_t)NIL_RTFILE;
198 if (RT_LIKELY(ioctl(pThis->hDevice, uFunction, pvReq) >= 0))
206 int rc = ioctl(pThis->hDevice, uFunction, idCpu);