HomeSort by relevance Sort by last modified time
    Searched refs:mNewTechList (Results 1 - 2 of 2) sorted by null

  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 445 int[] mNewTechList = new int[mTechList.length + 1];
446 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length);
447 mNewTechList[mTechList.length] = tech;
448 mTechList = mNewTechList;
466 int[] mNewTechList = new int[mTechList.length - 1];
467 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
468 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
470 mTechList = mNewTechList;
474 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex,
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 456 int[] mNewTechList = new int[mTechList.length + 1];
457 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length);
458 mNewTechList[mTechList.length] = tech;
459 mTechList = mNewTechList;
477 int[] mNewTechList = new int[mTechList.length - 1];
478 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
479 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
481 mTechList = mNewTechList;
485 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex,

Completed in 31 milliseconds