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

  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 49 private Bundle[] mTechExtras;
514 //The technology must be removed from the mTechExtras array,
518 if (mTechExtras != null)
520 Bundle[] mNewTechExtras = new Bundle[mTechExtras.length - 1];
521 System.arraycopy(mTechExtras, 0, mNewTechExtras, 0, techIndex);
522 System.arraycopy(mTechExtras, techIndex + 1, mNewTechExtras, techIndex,
523 mTechExtras.length - techIndex - 1);
524 mTechExtras = mNewTechExtras;
552 if (mTechExtras == null) {
564 mTechExtras = newTechExtras
    [all...]
  /frameworks/base/core/java/android/nfc/
Tag.java 116 final Bundle[] mTechExtras;
134 // Ensure mTechExtras is as long as mTechList
135 mTechExtras = Arrays.copyOf(techListExtras, techList.length);
354 return mTechExtras[pos];
412 dest.writeTypedArray(mTechExtras, 0);

Completed in 78 milliseconds