Home
last modified time | relevance | path

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

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeNfcTag.java480 int[] mNewHandleList = new int[mTechHandles.length + 1]; in addTechnology() local
481 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length); in addTechnology()
482 mNewHandleList[mTechHandles.length] = handle; in addTechnology()
483 mTechHandles = mNewHandleList; in addTechnology()
502 int[] mNewHandleList = new int[mTechHandles.length - 1]; in removeTechnology() local
503 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex); in removeTechnology()
506 mTechHandles = mNewHandleList; in removeTechnology()