Home
last modified time | relevance | path

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

/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
DNativeNfcTag.java44 private int[] mTechList; field in NativeNfcTag
156 for (int i = 0; i < mTechList.length; i++) { in connectWithStatus()
157 if (mTechList[i] == technology) { in connectWithStatus()
222 if (mConnectedTechIndex == -1 && mTechList.length > 0) { in startPresenceChecking()
223 connect(mTechList[0]); in startPresenceChecking()
439 return mTechList; in getTechList()
456 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechList.length) { in getConnectedTechnology()
457 return mTechList[mConnectedTechIndex]; in getConnectedTechnology()
468 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology()
469 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology()
[all …]
/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()
430 return mTechList; in getTechList()
447 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechList.length) { in getConnectedTechnology()
448 return mTechList[mConnectedTechIndex]; in getConnectedTechnology()
459 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology()
460 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology()
461 mNewTechList[mTechList.length] = tech; in addTechnology()
462 mTechList = mNewTechList; in addTechnology()
[all …]
/packages/apps/Nfc/nci/jni/
DNfcTag.cpp57 memset (mTechList, 0, sizeof(mTechList)); in NfcTag()
314 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_3A; //is TagTechnology.NFC_A by Java API in discoverTechnologies()
318 mTechList [mNumTechList] = TARGET_TYPE_ISO14443_3A; //is TagTechnology.NFC_A by Java API in discoverTechnologies()
336mTechList [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()
389 mTechList [mNumTechList] = TARGET_TYPE_ISO15693; in discoverTechnologies()
394 mTechList [mNumTechList] = TARGET_TYPE_KOVIO_BARCODE; in discoverTechnologies()
[all …]
DNativeNfcTag.cpp497 sCurrentConnectedTargetType = natTag.mTechList[i]; in nativeNfcTag_doConnect()
505 …if (natTag.mTechList[i] == TARGET_TYPE_ISO14443_3A || natTag.mTechList[i] == TARGET_TYPE_ISO14443_… in nativeNfcTag_doConnect()
507 …D ("%s: switching to tech: %d need to switch rf intf to frame", __FUNCTION__, natTag.mTechList[i]); in nativeNfcTag_doConnect()
688 if (NfcTag::getInstance ().mTechList [0] == TARGET_TYPE_KOVIO_BARCODE) in nativeNfcTag_doReconnect()
1075 if (NfcTag::getInstance ().mTechList [0] == TARGET_TYPE_KOVIO_BARCODE) in nativeNfcTag_doCheckNdef()
1221 if (NfcTag::getInstance ().mTechList [0] == TARGET_TYPE_KOVIO_BARCODE) in nativeNfcTag_doPresenceCheck()
DNfcTag.h36 int mTechList [MAX_NUM_TECHNOLOGY]; //array of NFC technologies according to NFC service variable