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 53 memset (mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes));
281 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
308 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
330 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
342 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol;
368 i, mTechList[i], mTechHandles[i], mTechLibNfcTypes[i]);
397 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol;
416 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol;
437 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol
    [all...]
NfcTag.h 37 int mTechLibNfcTypes [MAX_NUM_TECHNOLOGY]; //array of detailed tag types according to NFC service
312 ** Description: Fill NativeNfcTag's members: mProtocols, mTechList, mTechHandles, mTechLibNfcTypes.
NativeNfcTag.cpp 508 if (natTag.mTechLibNfcTypes[i] != NFC_PROTOCOL_ISO_DEP)
510 ALOGD ("%s() Nfc type = %d, do nothing for non ISO_DEP", __FUNCTION__, natTag.mTechLibNfcTypes[i]);
593 if (NFA_STATUS_OK != (status = NFA_Select (natTag.mTechHandles[0], natTag.mTechLibNfcTypes[0], rfInterface)))
639 if (natTag.mTechLibNfcTypes[0] != NFC_PROTOCOL_ISO_DEP)
641 ALOGD ("%s: protocol: %d not ISO_DEP, do nothing", __FUNCTION__, natTag.mTechLibNfcTypes[0]);
694 if (natTag.mTechLibNfcTypes[0] == NFA_PROTOCOL_ISO_DEP)
696 else if (natTag.mTechLibNfcTypes[0] == NFA_PROTOCOL_T2T)
    [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 46 private int[] mTechLibNfcTypes;
426 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
427 return mTechLibNfcTypes[mConnectedTechIndex];
457 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
458 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
459 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
460 mTechLibNfcTypes = mNewTypeList;
480 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
481 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 45 private int[] mTechLibNfcTypes;
434 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
435 return mTechLibNfcTypes[mConnectedTechIndex];
465 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
466 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
467 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
468 mTechLibNfcTypes = mNewTypeList;
488 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
489 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex)
    [all...]

Completed in 176 milliseconds