Home
last modified time | relevance | path

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

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeNfcTag.java46 private int[] mTechList; field in NativeNfcTag
158 for (int i = 0; i < mTechList.length; i++) { in connectWithStatus()
159 if (mTechList[i] == technology) { in connectWithStatus()
446 return mTechList; in getTechList()
463 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechList.length) { in getConnectedTechnology()
464 return mTechList[mConnectedTechIndex]; in getConnectedTechnology()
475 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology()
476 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology()
477 mNewTechList[mTechList.length] = tech; in addTechnology()
478 mTechList = mNewTechList; in addTechnology()
[all …]
/packages/apps/Nfc/nci/jni/
DNfcTag.cpp61 memset(mTechList, 0, sizeof(mTechList)); in NfcTag()
292 mTechList[mNumTechList] = in discoverTechnologies()
295 mTechList[mNumTechList] = in discoverTechnologies()
315 mTechList[mNumTechList] = in discoverTechnologies()
324 mTechList[mNumTechList] = TARGET_TYPE_FELICA; in discoverTechnologies()
336 mTechList[mNumTechList] = in discoverTechnologies()
345 mTechList[mNumTechList] = in discoverTechnologies()
359 mTechList[mNumTechList] = in discoverTechnologies()
367 mTechList[mNumTechList] = TARGET_TYPE_V; in discoverTechnologies()
370 mTechList[mNumTechList] = TARGET_TYPE_KOVIO_BARCODE; in discoverTechnologies()
[all …]
DNfcTag.h33 int mTechList[MAX_NUM_TECHNOLOGY]; // array of NFC technologies according to variable
DNativeNfcTag.cpp545 sCurrentConnectedTargetType = natTag.mTechList[i]; in nativeNfcTag_doConnect()