Home
last modified time | relevance | path

Searched refs:mOffHostRouteUicc (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DRoutingOptionManager.java37 final byte[] mOffHostRouteUicc; field in RoutingOptionManager
79 mOffHostRouteUicc = doGetOffHostUiccDestination(); in RoutingOptionManager()
81 Log.d(TAG, "mOffHostRouteUicc=" + Arrays.toString(mOffHostRouteUicc)); in RoutingOptionManager()
129 return mOffHostRouteUicc; in getOffHostRouteUicc()
DAidRoutingManager.java61 final byte[] mOffHostRouteUicc; field in AidRoutingManager
100 mOffHostRouteUicc = mRoutingOptionManager.getOffHostRouteUicc(); in AidRoutingManager()
102 Log.d(TAG, "mOffHostRouteUicc=" + Arrays.toString(mOffHostRouteUicc)); in AidRoutingManager()
191 } else if (se.startsWith("SIM") && mOffHostRouteUicc != null) { in getRouteForSecureElement()
193 if (mOffHostRouteUicc.length >= index && index > 0) { in getRouteForSecureElement()
194 return mOffHostRouteUicc[index - 1] & 0xFF; in getRouteForSecureElement()
197 if (mOffHostRouteEse == null && mOffHostRouteUicc == null) in getRouteForSecureElement()
DCardEmulationManager.java123 final byte[] mOffHostRouteUicc; field in CardEmulationManager
149 mOffHostRouteUicc = mRoutingOptionManager.getOffHostRouteUicc(); in CardEmulationManager()
183 mOffHostRouteUicc = mRoutingOptionManager.getOffHostRouteUicc(); in CardEmulationManager()
935 } else if (route.startsWith("SIM") && mOffHostRouteUicc != null) { in getRouteForSecureElement()
937 if (mOffHostRouteUicc.length >= index && index > 0) { in getRouteForSecureElement()
938 return mOffHostRouteUicc[index - 1] & 0xFF; in getRouteForSecureElement()
941 if (mOffHostRouteEse == null && mOffHostRouteUicc == null) in getRouteForSecureElement()
/packages/apps/Nfc/nci/jni/
DRoutingManager.h108 vector<uint8_t> mOffHostRouteUicc; variable
DRoutingManager.cpp76 mOffHostRouteUicc = NfcConfig::getBytes(NAME_OFFHOST_ROUTE_UICC); in RoutingManager()
1272 std::vector<uint8_t> uicc = getInstance().mOffHostRouteUicc; in com_android_nfc_cardemulation_doGetOffHostUiccDestination()
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DRoutingOptionManagerTest.java116 Assert.assertEquals(OFF_HOST_UICC, manager.mOffHostRouteUicc); in testConstructor()