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

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java49 private Bundle[] mTechExtras; field in class:NativeNfcTag
498 //The technology must be removed from the mTechExtras array,
502 if (mTechExtras != null)
504 Bundle[] mNewTechExtras = new Bundle[mTechExtras.length - 1];
505 System.arraycopy(mTechExtras, 0, mNewTechExtras, 0, techIndex);
506 System.arraycopy(mTechExtras, techIndex + 1, mNewTechExtras, techIndex,
507 mTechExtras.length - techIndex - 1);
508 mTechExtras = mNewTechExtras;
536 if (mTechExtras == null) {
548 mTechExtras
[all...]
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java47 private Bundle[] mTechExtras; field in class:NativeNfcTag
532 if (mTechExtras == null) {
544 mTechExtras = newTechExtras;
641 if (mTechExtras != null) return mTechExtras;
642 mTechExtras = new Bundle[mTechList.length];
719 mTechExtras[i] = extras;
721 return mTechExtras;

Completed in 21 milliseconds