Home
last modified time | relevance | path

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

/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DRegisteredServicesCacheTest.java800 Assert.assertFalse(mRegisteredServicesCache.removePollingLoopFilterForService(USER_ID, in testRemovePollingLoopFilterForService_nonExistingService()
810 Assert.assertFalse(mRegisteredServicesCache.removePollingLoopFilterForService(USER_ID, in testRemovePollingLoopFilterForService_wrongUid()
821 Assert.assertTrue(mRegisteredServicesCache.removePollingLoopFilterForService(USER_ID, in testRemovePollingLoopFilterForService_existingService_correctUid()
896 Assert.assertFalse(mRegisteredServicesCache.removePollingLoopFilterForService(USER_ID, in testRemovePollingLoopPatternFilterForService_wrongUid()
DCardEmulationManagerTest.java781 when(mRegisteredServicesCache.removePollingLoopFilterForService(eq(USER_ID), anyInt(), in testCardEmulationRemovePollingLoopFilterForService_serviceExists()
786 .removePollingLoopFilterForService(USER_ID, WALLET_PAYMENT_SERVICE, in testCardEmulationRemovePollingLoopFilterForService_serviceExists()
798 verify(mRegisteredServicesCache).removePollingLoopFilterForService(eq(USER_ID), in testCardEmulationRemovePollingLoopFilterForService_serviceExists()
807 when(mRegisteredServicesCache.removePollingLoopFilterForService(eq(USER_ID), anyInt(), in testCardEmulationRemovePollingLoopFilterForService_serviceDoesNotExists()
812 .removePollingLoopFilterForService(USER_ID, WALLET_PAYMENT_SERVICE, in testCardEmulationRemovePollingLoopFilterForService_serviceDoesNotExists()
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DCardEmulationManager.java692 public boolean removePollingLoopFilterForService(int userId, ComponentName service, in removePollingLoopFilterForService() method in CardEmulationManager.CardEmulationInterface
700 return mServiceCache.removePollingLoopFilterForService(userId, Binder.getCallingUid(), in removePollingLoopFilterForService()
DRegisteredServicesCache.java1106 public boolean removePollingLoopFilterForService(int userId, int uid, in removePollingLoopFilterForService() method in RegisteredServicesCache