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 55 memset (mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes));
298 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
325 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
347 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
359 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
384 i, mTechList[i], mTechHandles[i], mTechLibNfcTypes[i]);
413 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol;
433 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol;
456 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol
    [all...]
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.
NativeNfcTag.cpp 512 if (natTag.mTechLibNfcTypes[i] != NFC_PROTOCOL_ISO_DEP)
514 ALOGD ("%s() Nfc type = %d, do nothing for non ISO_DEP", __FUNCTION__, natTag.mTechLibNfcTypes[i]);
613 if (NFA_STATUS_OK != (status = NFA_Select (natTag.mTechHandles[0], natTag.mTechLibNfcTypes[0], rfInterface)))
668 if (natTag.mTechLibNfcTypes[0] != NFC_PROTOCOL_ISO_DEP)
670 ALOGD ("%s: protocol: %d not ISO_DEP, do nothing", __FUNCTION__, natTag.mTechLibNfcTypes[0]);
712 if (natTag.mTechLibNfcTypes[0] == NFA_PROTOCOL_ISO_DEP)
714 else if (natTag.mTechLibNfcTypes[0] == NFA_PROTOCOL_T2T)
    [all...]
  /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 111 milliseconds