Searched refs:mTechLibNfcTypes (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Nfc/nci/jni/ |
D | NfcTag.cpp | 61 memset (mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes)); in NfcTag() 308 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol; in discoverTechnologies() 334 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol; in discoverTechnologies() 369 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol; in discoverTechnologies() 381 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol; in discoverTechnologies() 404 mTechLibNfcTypes [mNumTechList] = rfDetail.protocol; in discoverTechnologies() 419 i, mTechList[i], mTechHandles[i], mTechLibNfcTypes[i]); in discoverTechnologies() 448 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol; in discoverTechnologies() 467 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol; in discoverTechnologies() 491 mTechLibNfcTypes [mNumTechList] = discovery_ntf.protocol; in discoverTechnologies() [all …]
|
D | NativeNfcTag.cpp | 583 sCurrentConnectedTargetProtocol = natTag.mTechLibNfcTypes[i]; in nativeNfcTag_doConnect() 685 …A_STATUS_OK != (status = NFA_Select (natTag.mTechHandles[0], natTag.mTechLibNfcTypes[0], rfInterfa… in reSelect() 741 ALOGV("%s: protocol: %d not ISO_DEP, do nothing", __func__, natTag.mTechLibNfcTypes[0]); in switchRfInterface()
|
D | NfcTag.h | 38 … int mTechLibNfcTypes [MAX_NUM_TECHNOLOGY]; //array of detailed tag types according to NFC service variable
|
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcTag.java | 48 private int[] mTechLibNfcTypes; field in NativeNfcTag 443 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) { in getConnectedLibNfcType() 444 return mTechLibNfcTypes[mConnectedTechIndex]; in getConnectedLibNfcType() 474 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1]; in addTechnology() 475 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length); in addTechnology() 476 mNewTypeList[mTechLibNfcTypes.length] = libnfctype; in addTechnology() 477 mTechLibNfcTypes = mNewTypeList; in addTechnology() 497 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1]; in removeTechnology() 498 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex); in removeTechnology() 499 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex, in removeTechnology() [all …]
|