Home
last modified time | relevance | path

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

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
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()
510 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex, in removeTechnology()
[all …]
/packages/apps/Nfc/nci/jni/
DNfcTag.cpp70 memset(mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes)); in NfcTag()
294 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
320 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
364 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
378 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
398 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies()
414 mTechList[i], mTechHandles[i], mTechLibNfcTypes[i]); in discoverTechnologies()
586 mNativeData->tProtocols[i] = mTechLibNfcTypes[i]; in fillNativeNfcTagMembers1()
590 types[i] = mTechLibNfcTypes[i]; in fillNativeNfcTagMembers1()
815 if (NFC_PROTOCOL_T1T == mTechLibNfcTypes[i] || in fillNativeNfcTagMembers4()
[all …]
DNfcTag.h41 int mTechLibNfcTypes[MAX_NUM_TECHNOLOGY]; // array of detailed tag types (RF variable
DNativeNfcTag.cpp570 sCurrentConnectedTargetProtocol = natTag.mTechLibNfcTypes[i]; in nativeNfcTag_doConnect()
701 natTag.mTechLibNfcTypes[sCurrentConnectedHandle], in reSelect()
775 natTag.mTechLibNfcTypes[0]); in switchRfInterface()