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

  /packages/apps/Nfc/nci/jni/
NfcTag.cpp 61 memset (mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes));
308 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
334 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
369 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
381 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
404 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
419 i, mTechList[i], mTechHandles[i], mTechLibNfcTypes[i]);
448 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol;
467 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol
    [all...]
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.
NativeNfcTag.cpp 583 sCurrentConnectedTargetProtocol = natTag.mTechLibNfcTypes[i];
685 if (NFA_STATUS_OK != (status = NFA_Select (natTag.mTechHandles[0], natTag.mTechLibNfcTypes[0], rfInterface)))
741 ALOGD ("%s: protocol: %d not ISO_DEP, do nothing", __FUNCTION__, natTag.mTechLibNfcTypes[0]);
    [all...]
  /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...]
  /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 874 milliseconds