Home
last modified time | relevance | path

Searched refs:sRecvData (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Nfc/nci/jni/extns/pn54x/src/mifare/
DphNxpExtns_MifareStd.c119 if( NdefMap->pTransceiveInfo->sRecvData.buffer != NULL ) in phNxpExtns_MfcModuleDeInit()
121 free(NdefMap->pTransceiveInfo->sRecvData.buffer); in phNxpExtns_MfcModuleDeInit()
122 NdefMap->pTransceiveInfo->sRecvData.buffer = NULL; in phNxpExtns_MfcModuleDeInit()
255 …NdefMap->pTransceiveInfo->sRecvData.buffer = (uint8_t *)malloc((uint32_t)MAX_BUFF_SIZE); /* size s… in phNxpExtns_MfcModuleInit()
256 if( NdefMap->pTransceiveInfo->sRecvData.buffer == NULL ) in phNxpExtns_MfcModuleInit()
260 memset( NdefMap->pTransceiveInfo->sRecvData.buffer, 0, MAX_BUFF_SIZE ); in phNxpExtns_MfcModuleInit()
261 NdefMap->pTransceiveInfo->sRecvData.length = MAX_BUFF_SIZE; in phNxpExtns_MfcModuleInit()
1774 if( (NULL != pTransceiveInfo->sRecvData.buffer) && in phLibNfc_MifareMap()
1775 (0 != (pTransceiveInfo->sRecvData.length))) in phLibNfc_MifareMap()
1813 (NULL != pTransceiveInfo->sRecvData.buffer) && in phLibNfc_MifareMap()
[all …]
/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc_NativeP2pDevice.cpp301 transceive_info.sRecvData.buffer = (uint8_t*)malloc(1024); in com_android_nfc_NativeP2pDevice_doTransceive()
302 transceive_info.sRecvData.length = 1024; in com_android_nfc_NativeP2pDevice_doTransceive()
304 if(transceive_info.sRecvData.buffer == NULL) in com_android_nfc_NativeP2pDevice_doTransceive()
340 if(transceive_info.sRecvData.buffer != NULL) in com_android_nfc_NativeP2pDevice_doTransceive()
342 free(transceive_info.sRecvData.buffer); in com_android_nfc_NativeP2pDevice_doTransceive()
Dcom_android_nfc_NativeNfcTag.cpp813 transceive_info.sRecvData.buffer = (uint8_t*)malloc(1024); in com_android_nfc_NativeNfcTag_doTransceive()
814 transceive_info.sRecvData.length = 1024; in com_android_nfc_NativeNfcTag_doTransceive()
815 if(transceive_info.sRecvData.buffer == NULL) in com_android_nfc_NativeNfcTag_doTransceive()
872 if(transceive_info.sRecvData.buffer != NULL) in com_android_nfc_NativeNfcTag_doTransceive()
874 free(transceive_info.sRecvData.buffer); in com_android_nfc_NativeNfcTag_doTransceive()
/packages/apps/Nfc/nci/jni/extns/pn54x/src/common/
DphNfcTypes.h283 phNfc_sData_t sRecvData; /* Recv data */ member