Home | History | Annotate | Download | only in Linux_x86

Lines Matching refs:nHandle

47    int  nHandle;
86 gI2cPortContext.nHandle = (int) pDalHwContext->p_board_driver;
87 DAL_ASSERT_STR(gI2cPortContext.nHandle >= 0, "Bad passed com port handle");
130 close(gI2cPortContext.nHandle);
131 gI2cPortContext.nHandle = 0;
163 gI2cPortContext.nHandle = open(pComPort, O_RDWR | O_NOCTTY);
164 if (gI2cPortContext.nHandle < 0)
166 DAL_DEBUG("Open failed: open() returned %d\n", gI2cPortContext.nHandle);
172 *pLinkHandle = (void*)gI2cPortContext.nHandle;
195 ret = read(gI2cPortContext.nHandle, pBuffer, nNbBytesToRead);
222 ret = write(gI2cPortContext.nHandle, pBuffer, nNbBytesToWrite);
248 ret = ioctl(gI2cPortContext.nHandle, PN544_SET_PWR, level);