OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:transceive_info
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeP2pDevice.cpp
276
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
298
transceive_info
.sSendData.buffer = buf; //+ offset;
299
transceive_info
.sSendData.length = buflen; //- offset;
300
transceive_info
.sRecvData.buffer = (uint8_t*)malloc(1024);
301
transceive_info
.sRecvData.length = 1024;
303
if(
transceive_info
.sRecvData.buffer == NULL)
310
status = phLibNfc_RemoteDev_Transceive(handle, &
transceive_info
, nfc_jni_transceive_callback, (void *)&cb_data);
339
if(
transceive_info
.sRecvData.buffer != NULL)
341
free(
transceive_info
.sRecvData.buffer);
345
(jbyte *)
transceive_info
.sSendData.buffer, JNI_ABORT)
[
all
...]
com_android_nfc_NativeNfcSecureElement.cpp
614
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
641
transceive_info
.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0];
642
transceive_info
.addr = (uint8_t)buf[1];
646
transceive_info
.cmd.Iso144434Cmd = phNfc_eIso14443_4_Raw;
647
transceive_info
.addr = 0;
650
transceive_info
.sSendData.buffer = buf + offset;
651
transceive_info
.sSendData.length = buflen - offset;
652
transceive_info
.sRecvData.buffer = (uint8_t*)malloc(1024);
653
transceive_info
.sRecvData.length = 1024;
655
if(
transceive_info
.sRecvData.buffer == NULL
[
all
...]
com_android_nfc_NativeNfcTag.cpp
707
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
728
memset(&
transceive_info
, 0, sizeof(
transceive_info
));
745
transceive_info
.cmd.FelCmd = phNfc_eFelica_Raw;
746
transceive_info
.addr = 0;
751
transceive_info
.cmd.MfCmd = phHal_eMifareRaw;
752
transceive_info
.addr = 0;
762
transceive_info
.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0];
763
transceive_info
.addr = (uint8_t)buf[1];
770
transceive_info
.cmd.JewelCmd = phNfc_eJewel_Raw
[
all
...]
Completed in 67 milliseconds