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.java464 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology() local
465 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology()
466 mNewTechList[mTechList.length] = tech; in addTechnology()
467 mTechList = mNewTechList; in addTechnology()
485 int[] mNewTechList = new int[mTechList.length - 1]; in removeTechnology() local
486 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex); in removeTechnology()
487 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex, in removeTechnology()
489 mTechList = mNewTechList; in removeTechnology()
493 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex, in removeTechnology()