Searched refs:techIndex (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcTag.java | 494 int techIndex = getTechIndex(tech); in removeTechnology() local 495 if (techIndex != -1) { in removeTechnology() 497 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex); in removeTechnology() 498 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex, in removeTechnology() 499 mTechList.length - techIndex - 1); in removeTechnology() 503 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex); in removeTechnology() 504 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex, in removeTechnology() 505 mTechHandles.length - techIndex - 1); in removeTechnology() 509 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex); in removeTechnology() 510 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex, in removeTechnology() [all …]
|