OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:transceive_info
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Nfc/jni/
com_android_nfc_NativeNfcTag.cpp
405
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
424
transceive_info
.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0];
425
transceive_info
.addr = (uint8_t)buf[1];
429
transceive_info
.cmd.FelCmd = phNfc_eFelica_Raw;
430
transceive_info
.addr = 0;
434
transceive_info
.cmd.Iso144434Cmd = phNfc_eIso14443_4_Raw;
435
transceive_info
.addr = 0;
439
transceive_info
.cmd.JewelCmd = phNfc_eJewel_Raw;
440
transceive_info
.addr = 0;
446
transceive_info
.sSendData.buffer = buf + offset
[
all
...]
com_android_nfc_NativeP2pDevice.cpp
231
phLibNfc_sTransceiveInfo_t
transceive_info
;
local
245
transceive_info
.sSendData.buffer = buf; //+ offset;
246
transceive_info
.sSendData.length = buflen; //- offset;
247
transceive_info
.sRecvData.buffer = (uint8_t*)malloc(1024);
248
transceive_info
.sRecvData.length = 1024;
250
if(
transceive_info
.sRecvData.buffer == NULL)
257
status = phLibNfc_RemoteDev_Transceive(handle, &
transceive_info
, nfc_jni_transceive_callback, (void *)e);
282
if(
transceive_info
.sRecvData.buffer != NULL)
283
free(
transceive_info
.sRecvData.buffer);
286
(jbyte *)
transceive_info
.sSendData.buffer, JNI_ABORT)
[
all
...]
Completed in 422 milliseconds