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
155 for (int i = 0; i < mTechList.length; i++) { in connectWithStatus()
156 if (mTechList[i] == technology) { in connectWithStatus()
435 return mTechList; in getTechList()
452 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechList.length) { in getConnectedTechnology()
453 return mTechList[mConnectedTechIndex]; in getConnectedTechnology()
464 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology()
465 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology()
466 mNewTechList[mTechList.length] = tech; in addTechnology()
467 mTechList = mNewTechList; in addTechnology()
[all …]
/packages/apps/Nfc/nci/jni/
DNfcTag.cpp59 memset (mTechList, 0, sizeof(mTechList)); in NfcTag()
315 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_3A; //is TagTechnology.NFC_A by Java API in discoverTechnologies()
319 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_3A; //is TagTechnology.NFC_A by Java API in discoverTechnologies()
337mTechList [mNumTechList] = TARGET_TYPE_MIFARE_UL; //is TagTechnology.MIFARE_ULTRALIGHT by Java API in discoverTechnologies()
346 mTechList [mNumTechList] = TARGET_TYPE_FELICA; in discoverTechnologies()
361 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_4; //is TagTechnology.ISO_DEP by Java API in discoverTechnologies()
370 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_3A; //is TagTechnology.NFC_A by Java API in discoverTechnologies()
382 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_3B; //is TagTechnology.NFC_B by Java API in discoverTechnologies()
390 mTechList [mNumTechList] = TARGET_TYPE_ISO15693; in discoverTechnologies()
395 mTechList [mNumTechList] = TARGET_TYPE_KOVIO_BARCODE; in discoverTechnologies()
[all …]
DNfcTag.h36 int mTechList [MAX_NUM_TECHNOLOGY]; //array of NFC technologies according to NFC service variable
DNativeNfcTag.cpp582 sCurrentConnectedTargetType = natTag.mTechList[i]; in nativeNfcTag_doConnect()