Home
last modified time | relevance | path

Searched refs:buflen (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc_NativeNfcTag.cpp703 uint32_t buflen; in com_android_nfc_NativeNfcTag_doTransceive() local
741 buflen = outlen = (uint32_t)e->GetArrayLength(data); in com_android_nfc_NativeNfcTag_doTransceive()
754 outbuf = (uint8_t*)malloc(buflen + 2); in com_android_nfc_NativeNfcTag_doTransceive()
756 memcpy(outbuf, buf, buflen); in com_android_nfc_NativeNfcTag_doTransceive()
757 nfc_insert_crc_a(outbuf, buflen); in com_android_nfc_NativeNfcTag_doTransceive()
779 outbuf = (uint8_t*)malloc(buflen + 2); in com_android_nfc_NativeNfcTag_doTransceive()
781 memcpy(outbuf, buf, buflen); in com_android_nfc_NativeNfcTag_doTransceive()
782 nfc_insert_crc_a(outbuf, buflen); in com_android_nfc_NativeNfcTag_doTransceive()
Dcom_android_nfc_NativeP2pDevice.cpp275 uint32_t buflen; in com_android_nfc_NativeP2pDevice_doTransceive() local
294 buflen = (uint32_t)e->GetArrayLength(data); in com_android_nfc_NativeP2pDevice_doTransceive()
296 TRACE("Buffer Length = %d\n", buflen); in com_android_nfc_NativeP2pDevice_doTransceive()
299 transceive_info.sSendData.length = buflen; //- offset; in com_android_nfc_NativeP2pDevice_doTransceive()
/packages/apps/Nfc/nci/jni/
DNativeNfcManager.cpp51 … extern void nativeNfcTag_doTransceiveStatus (tNFA_STATUS status, uint8_t * buf, uint32_t buflen);