Searched refs:mTechExtras (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java47 private Bundle[] mTechExtras; field in class:NativeNfcTag
484 //The technology must be removed from the mTechExtras array,
488 if (mTechExtras != null)
490 Bundle[] mNewTechExtras = new Bundle[mTechExtras.length - 1];
491 System.arraycopy(mTechExtras, 0, mNewTechExtras, 0, techIndex);
492 System.arraycopy(mTechExtras, techIndex + 1, mNewTechExtras, techIndex,
493 mTechExtras.length - techIndex - 1);
494 mTechExtras = mNewTechExtras;
522 if (mTechExtras == null) {
534 mTechExtras
[all...]
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java46 private Bundle[] mTechExtras; field in class:NativeNfcTag
520 if (mTechExtras == null) {
532 mTechExtras = newTechExtras;
629 if (mTechExtras != null) return mTechExtras;
630 mTechExtras = new Bundle[mTechList.length];
707 mTechExtras[i] = extras;
709 return mTechExtras;

Completed in 11 milliseconds