Home
last modified time | relevance | path

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

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeNfcTag.java480 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology() local
481 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology()
482 mNewTechList[mTechList.length] = tech; in addTechnology()
483 mTechList = mNewTechList; in addTechnology()
501 int[] mNewTechList = new int[mTechList.length - 1]; in removeTechnology() local
502 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex); in removeTechnology()
506 mNewTechList, in removeTechnology()
509 mTechList = mNewTechList; in removeTechnology()
516 mNewTechList, in removeTechnology()