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

  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 450 int[] mNewHandleList = new int[mTechHandles.length + 1];
451 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length);
452 mNewHandleList[mTechHandles.length] = handle;
453 mTechHandles = mNewHandleList;
472 int[] mNewHandleList = new int[mTechHandles.length - 1];
473 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
476 mTechHandles = mNewHandleList;
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 461 int[] mNewHandleList = new int[mTechHandles.length + 1];
462 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length);
463 mNewHandleList[mTechHandles.length] = handle;
464 mTechHandles = mNewHandleList;
483 int[] mNewHandleList = new int[mTechHandles.length - 1];
484 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
487 mTechHandles = mNewHandleList;

Completed in 202 milliseconds