Searched refs:mNewTechList (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcTag.java | 475 int[] mNewTechList = new int[mTechList.length + 1]; in addTechnology() local 476 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); in addTechnology() 477 mNewTechList[mTechList.length] = tech; in addTechnology() 478 mTechList = mNewTechList; in addTechnology() 496 int[] mNewTechList = new int[mTechList.length - 1]; in removeTechnology() local 497 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex); in removeTechnology() 498 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex, in removeTechnology() 500 mTechList = mNewTechList; in removeTechnology() 504 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex, in removeTechnology()
|