OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:transceive_info
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp
708
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
729
memset(&
transceive_info
, 0, sizeof(
transceive_info
));
746
transceive_info
.cmd.FelCmd = phNfc_eFelica_Raw;
747
transceive_info
.addr = 0;
752
transceive_info
.cmd.MfCmd = phHal_eMifareRaw;
753
transceive_info
.addr = 0;
763
transceive_info
.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0];
764
transceive_info
.addr = (uint8_t)buf[1];
771
transceive_info
.cmd.JewelCmd = phNfc_eJewel_Raw
[
all
...]
com_android_nfc_NativeP2pDevice.cpp
277
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
299
transceive_info
.sSendData.buffer = buf; //+ offset;
300
transceive_info
.sSendData.length = buflen; //- offset;
301
transceive_info
.sRecvData.buffer = (uint8_t*)malloc(1024);
302
transceive_info
.sRecvData.length = 1024;
304
if(
transceive_info
.sRecvData.buffer == NULL)
311
status = phLibNfc_RemoteDev_Transceive(handle, &
transceive_info
, nfc_jni_transceive_callback, (void *)&cb_data);
340
if(
transceive_info
.sRecvData.buffer != NULL)
342
free(
transceive_info
.sRecvData.buffer);
346
(jbyte *)
transceive_info
.sSendData.buffer, JNI_ABORT)
[
all
...]
Completed in 110 milliseconds