Home
last modified time | relevance | path

Searched refs:nNbBytesToRead (Results 1 – 5 of 5) sorted by relevance

/external/libnfc-nxp/Linux_x86/
DphDal4Nfc_i2c.c178 int phDal4Nfc_i2c_read(uint8_t * pBuffer, int nNbBytesToRead) in phDal4Nfc_i2c_read() argument
186 DAL_DEBUG("_i2c_read() called to read %d bytes", nNbBytesToRead); in phDal4Nfc_i2c_read()
191 while (numRead < nNbBytesToRead) { in phDal4Nfc_i2c_read()
207 ret = read(gI2cPortContext.nHandle, pBuffer + numRead, nNbBytesToRead - numRead); in phDal4Nfc_i2c_read()
DphDal4Nfc_uart.c296 int phDal4Nfc_uart_read(uint8_t * pBuffer, int nNbBytesToRead) in phDal4Nfc_uart_read() argument
306 DAL_DEBUG("_uart_read() called to read %d bytes", nNbBytesToRead); in phDal4Nfc_uart_read()
314 if (nNbBytesToRead > 1 && !libnfc_firmware_mode) { in phDal4Nfc_uart_read()
330 while (numRead < nNbBytesToRead) { in phDal4Nfc_uart_read()
350 ret = read(gComPortContext.nHandle, pBuffer + numRead, nNbBytesToRead - numRead); in phDal4Nfc_uart_read()
DphDal4Nfc_i2c.h37 int phDal4Nfc_i2c_read(uint8_t * pBuffer, int nNbBytesToRead);
DphDal4Nfc_uart.h41 int phDal4Nfc_uart_read(uint8_t * pBuffer, int nNbBytesToRead);
DphDal4Nfc_link.h41 …edef int (*phDal4Nfc_link_read_CB_t) (uint8_t * pBuffer, int nNbBytesToRead);