HomeSort by relevance Sort by last modified time
    Searched defs:mTechLibNfcTypes (Results 1 - 3 of 3) 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
456 ** Description: Fill NativeNfcTag's members: mProtocols, mTechList, mTechHandles, mTechLibNfcTypes.
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 48 private int[] mTechLibNfcTypes;
438 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
439 return mTechLibNfcTypes[mConnectedTechIndex];
469 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
470 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
471 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
472 mTechLibNfcTypes = mNewTypeList;
492 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
493 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 46 private int[] mTechLibNfcTypes;
447 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
448 return mTechLibNfcTypes[mConnectedTechIndex];
478 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
479 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
480 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
481 mTechLibNfcTypes = mNewTypeList;
501 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
502 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]

Completed in 47 milliseconds