Home
last modified time | relevance | path

Searched refs:mEnabledNfcFServices (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Nfc/tests/unit/src/com/android/nfc/
DEnableNfcFServiceTest.java58 private EnabledNfcFServices mEnabledNfcFServices; field in EnableNfcFServiceTest
99 () -> mEnabledNfcFServices = new EnabledNfcFServices(mockContext, in setUp()
105 Assert.assertNotNull(mEnabledNfcFServices); in setUp()
117 boolean isActivated = mEnabledNfcFServices.isActivated(); in testOnHostEmulationActivated()
119 mEnabledNfcFServices.onHostEmulationActivated(); in testOnHostEmulationActivated()
120 isActivated = mEnabledNfcFServices.isActivated(); in testOnHostEmulationActivated()
128 mEnabledNfcFServices.onHostEmulationActivated(); in testOnHostEmulationDeactivated()
129 boolean isActivated = mEnabledNfcFServices.isActivated(); in testOnHostEmulationDeactivated()
131 mEnabledNfcFServices.onHostEmulationDeactivated(); in testOnHostEmulationDeactivated()
132 isActivated = mEnabledNfcFServices.isActivated(); in testOnHostEmulationDeactivated()
[all …]
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DCardEmulationManager.java112 final EnabledNfcFServices mEnabledNfcFServices; field in CardEmulationManager
144 mEnabledNfcFServices = new EnabledNfcFServices( in CardEmulationManager()
179 mEnabledNfcFServices = enabledNfcFServices; in CardEmulationManager()
230 mEnabledNfcFServices.onHostEmulationActivated(); in onHostCardEmulationActivated()
255 mEnabledNfcFServices.onHostEmulationDeactivated(); in onHostCardEmulationDeactivated()
271 mEnabledNfcFServices.onUserSwitched(userId); in onUserSwitched()
296 mEnabledNfcFServices.onNfcDisabled(); in onNfcDisabled()
308 mEnabledNfcFServices.dump(fd, pw, args); in dump()
338 mEnabledNfcFServices.dumpDebug(proto); in dumpDebug()
380 mEnabledNfcFServices.onServicesUpdated(); in onNfcFServicesUpdated()
[all …]
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DCardEmulationManagerTest.java113 private EnabledNfcFServices mEnabledNfcFServices; field in CardEmulationManagerTest
205 verifyZeroInteractions(mEnabledNfcFServices); in testOnHostCardEmulationActivated_technologyApdu()
217 verify(mEnabledNfcFServices).onHostEmulationActivated(); in testOnHostCardEmulationActivated_technologyNfcf()
284 verifyZeroInteractions(mEnabledNfcFServices); in testOnHostCardEmulationDeactivated_technologyApdu()
294 verify(mEnabledNfcFServices).onHostEmulationDeactivated(); in testOnHostCardEmulationDeactivated_technologyNfcf()
317 verify(mEnabledNfcFServices).onUserSwitched(eq(USER_ID)); in testOnUserSwitched()
347 verify(mEnabledNfcFServices).onNfcDisabled(); in testOnNfcDisabled()
1750 when(mEnabledNfcFServices.registerEnabledForegroundService(any(), in testNfcFCardEmulationEnableNfcFForegroundService_serviceExists()
1763 verify(mEnabledNfcFServices).registerEnabledForegroundService(eq(WALLET_PAYMENT_SERVICE), in testNfcFCardEmulationEnableNfcFForegroundService_serviceExists()
1773 when(mEnabledNfcFServices.registerEnabledForegroundService(any(), in testNfcFCardEmulationEnableNfcFForegroundService_serviceDoesNotExists()
[all …]