Home
last modified time | relevance | path

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

/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DRoutingOptionManager.java38 final byte[] mOffHostRouteEse; field in RoutingOptionManager
82 mOffHostRouteEse = doGetOffHostEseDestination(); in RoutingOptionManager()
84 Log.d(TAG, "mOffHostRouteEse=" + Arrays.toString(mOffHostRouteEse)); in RoutingOptionManager()
133 return mOffHostRouteEse; in getOffHostRouteEse()
DAidRoutingManager.java62 final byte[] mOffHostRouteEse; field in AidRoutingManager
103 mOffHostRouteEse = mRoutingOptionManager.getOffHostRouteEse(); in AidRoutingManager()
105 Log.d(TAG, "mOffHostRouteEse=" + Arrays.toString(mOffHostRouteEse)); in AidRoutingManager()
186 if (se.startsWith("eSE") && mOffHostRouteEse != null) { in getRouteForSecureElement()
188 if (mOffHostRouteEse.length >= index && index > 0) { in getRouteForSecureElement()
189 return mOffHostRouteEse[index - 1] & 0xFF; in getRouteForSecureElement()
197 if (mOffHostRouteEse == null && mOffHostRouteUicc == null) in getRouteForSecureElement()
DCardEmulationManager.java124 final byte[] mOffHostRouteEse; field in CardEmulationManager
148 mOffHostRouteEse = mRoutingOptionManager.getOffHostRouteEse(); in CardEmulationManager()
182 mOffHostRouteEse = mRoutingOptionManager.getOffHostRouteEse(); in CardEmulationManager()
930 if (route.startsWith("eSE") && mOffHostRouteEse != null) { in getRouteForSecureElement()
932 if (mOffHostRouteEse.length >= index && index > 0) { in getRouteForSecureElement()
933 return mOffHostRouteEse[index - 1] & 0xFF; in getRouteForSecureElement()
941 if (mOffHostRouteEse == null && mOffHostRouteUicc == null) in getRouteForSecureElement()
/packages/apps/Nfc/nci/jni/
DRoutingManager.cpp80 mOffHostRouteEse = NfcConfig::getBytes(NAME_OFFHOST_ROUTE_ESE); in RoutingManager()
1144 if (mOffHostRouteEse.size() > 0) { in eeSetPwrAndLinkCtrl()
1146 mOffHostRouteEse[0], config); in eeSetPwrAndLinkCtrl()
1151 ((uint8_t)mOffHostRouteEse[0] | NFA_HANDLE_GROUP_EE), config); in eeSetPwrAndLinkCtrl()
1286 std::vector<uint8_t> ese = getInstance().mOffHostRouteEse; in com_android_nfc_cardemulation_doGetOffHostEseDestination()
DRoutingManager.h109 vector<uint8_t> mOffHostRouteEse; variable
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DRoutingOptionManagerTest.java117 Assert.assertEquals(OFF_HOST_ESE, manager.mOffHostRouteEse); in testConstructor()