Home
last modified time | relevance | path

Searched refs:resetOffHostSecureElement (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DRegisteredServicesCacheTest.java631 Assert.assertFalse(mRegisteredServicesCache.resetOffHostSecureElement(USER_ID, in testResetOffhostSecureElement_nonExistingService()
641 Assert.assertFalse(mRegisteredServicesCache.resetOffHostSecureElement(USER_ID, in testResetOffhostSecureElement_wrongServiceUid()
651 Assert.assertFalse(mRegisteredServicesCache.resetOffHostSecureElement(USER_ID, in testResetOffhostSecureElement_nullOffHostSet()
673 Assert.assertTrue(mRegisteredServicesCache.resetOffHostSecureElement(USER_ID, in testResetOffhostSecureElement_existingService_correctUid()
690 verify(apduServiceInfos.get(0)).resetOffHostSecureElement(); in testResetOffhostSecureElement_existingService_correctUid()
DCardEmulationManagerTest.java983 when(mRegisteredServicesCache.resetOffHostSecureElement(eq(USER_ID), in testCardEmulationUnsetOffHostForService_serviceExists()
998 verify(mRegisteredServicesCache).resetOffHostSecureElement(eq(USER_ID), anyInt(), in testCardEmulationUnsetOffHostForService_serviceExists()
1008 when(mRegisteredServicesCache.resetOffHostSecureElement(eq(USER_ID), in testCardEmulationUnsetOffHostForService_serviceDoesNotExists()
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DRegisteredServicesCache.java1003 public boolean resetOffHostSecureElement(int userId, int uid, ComponentName componentName) { in resetOffHostSecureElement() method in RegisteredServicesCache
1036 serviceInfo.resetOffHostSecureElement(); in resetOffHostSecureElement()
DCardEmulationManager.java755 if (!mServiceCache.resetOffHostSecureElement(userId, Binder.getCallingUid(), service)) { in unsetOffHostForService()