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
379 ** Description: Fill NativeNfcTag's members: mProtocols, mTechList, mTechHandles, mTechLibNfcTypes.
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 46 private int[] mTechLibNfcTypes;
424 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
425 return mTechLibNfcTypes[mConnectedTechIndex];
455 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
456 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
457 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
458 mTechLibNfcTypes = mNewTypeList;
478 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
479 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 45 private int[] mTechLibNfcTypes;
435 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
436 return mTechLibNfcTypes[mConnectedTechIndex];
466 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
467 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
468 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
469 mTechLibNfcTypes = mNewTypeList;
489 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
490 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]

Completed in 1039 milliseconds