Home
last modified time | relevance | path

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

/aosp12/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java48 private int[] mTechLibNfcTypes; field in NativeNfcTag
454 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) { in getConnectedLibNfcType()
455 return mTechLibNfcTypes[mConnectedTechIndex]; in getConnectedLibNfcType()
485 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1]; in addTechnology()
486 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length); in addTechnology()
487 mNewTypeList[mTechLibNfcTypes.length] = libnfctype; in addTechnology()
488 mTechLibNfcTypes = mNewTypeList; in addTechnology()
508 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1]; in removeTechnology()
509 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex); in removeTechnology()
511 mTechLibNfcTypes.length - techIndex - 1); in removeTechnology()
[all …]
/aosp12/packages/apps/Nfc/nci/jni/
H A DNfcTag.cpp70 memset(mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes)); in NfcTag()
298 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
402 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
591 mNativeData->tProtocols[i] = mTechLibNfcTypes[i]; in fillNativeNfcTagMembers1()
595 types[i] = mTechLibNfcTypes[i]; in fillNativeNfcTagMembers1()
820 if (NFC_PROTOCOL_T1T == mTechLibNfcTypes[i] || in fillNativeNfcTagMembers4()
821 NFC_PROTOCOL_T2T == mTechLibNfcTypes[i]) { in fillNativeNfcTagMembers4()
822 if (mTechLibNfcTypes[i] == NFC_PROTOCOL_T1T) in fillNativeNfcTagMembers4()
824 else if (mTechLibNfcTypes[i] == NFC_PROTOCOL_T2T) in fillNativeNfcTagMembers4()
908 else if (NFC_PROTOCOL_T5T == mTechLibNfcTypes[i]) { in fillNativeNfcTagMembers4()
[all …]
H A DNfcTag.h41 int mTechLibNfcTypes[MAX_NUM_TECHNOLOGY]; // array of detailed tag types (RF variable
H A DNativeNfcTag.cpp570 sCurrentConnectedTargetProtocol = natTag.mTechLibNfcTypes[i]; in nativeNfcTag_doConnect()
704 natTag.mTechLibNfcTypes[sCurrentConnectedHandle], in reSelect()
778 natTag.mTechLibNfcTypes[0]); in switchRfInterface()