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.java469 int[] mNewHandleList = new int[mTechHandles.length + 1]; in addTechnology() local
470 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length); in addTechnology()
471 mNewHandleList[mTechHandles.length] = handle; in addTechnology()
472 mTechHandles = mNewHandleList; in addTechnology()
491 int[] mNewHandleList = new int[mTechHandles.length - 1]; in removeTechnology() local
492 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex); in removeTechnology()
495 mTechHandles = mNewHandleList; in removeTechnology()