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

  /packages/apps/Nfc/nci/jni/
NfcTag.h 38 int mTechLibNfcTypes [MAX_NUM_TECHNOLOGY]; //array of detailed tag types according to NFC service
468 ** Description: Fill NativeNfcTag's members: mProtocols, mTechList, mTechHandles, mTechLibNfcTypes.
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 48 private int[] mTechLibNfcTypes;
443 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
444 return mTechLibNfcTypes[mConnectedTechIndex];
474 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
475 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
476 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
477 mTechLibNfcTypes = mNewTypeList;
497 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
498 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]

Completed in 553 milliseconds