Searched refs:mTechLibNfcTypes (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Nfc/nci/jni/ |
D | NfcTag.cpp | 63 memset(mTechLibNfcTypes, 0, sizeof(mTechLibNfcTypes)); in NfcTag() 285 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies() 311 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies() 344 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies() 358 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies() 378 mTechLibNfcTypes[mNumTechList] = rfDetail.protocol; in discoverTechnologies() 394 mTechList[i], mTechHandles[i], mTechLibNfcTypes[i]); in discoverTechnologies() 423 mTechLibNfcTypes[mNumTechList] = discovery_ntf.protocol; in discoverTechnologies() 442 mTechLibNfcTypes[mNumTechList] = discovery_ntf.protocol; in discoverTechnologies() 466 mTechLibNfcTypes[mNumTechList] = discovery_ntf.protocol; in discoverTechnologies() [all …]
|
D | NfcTag.h | 37 int mTechLibNfcTypes[MAX_NUM_TECHNOLOGY]; // array of detailed tag types variable
|
D | NativeNfcTag.cpp | 546 sCurrentConnectedTargetProtocol = natTag.mTechLibNfcTypes[i]; in nativeNfcTag_doConnect() 655 natTag.mTechLibNfcTypes[0], rfInterface))) { in reSelect() 710 natTag.mTechLibNfcTypes[0]); in switchRfInterface()
|
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcTag.java | 48 private int[] mTechLibNfcTypes; field in NativeNfcTag 454 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) { in getConnectedLibNfcType() 455 return mTechLibNfcTypes[mConnectedTechIndex]; in getConnectedLibNfcType() 485 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1]; in addTechnology() 486 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length); in addTechnology() 487 mNewTypeList[mTechLibNfcTypes.length] = libnfctype; in addTechnology() 488 mTechLibNfcTypes = mNewTypeList; in addTechnology() 508 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1]; in removeTechnology() 509 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex); in removeTechnology() 510 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex, in removeTechnology() [all …]
|