Searched refs:testService (Results 1 – 7 of 7) sorted by relevance
92 private static final ComponentName testService = new ComponentName( field in HostNfcFEmulationManagerTest128 manager.onEnabledForegroundNfcFServiceChanged(USER_ID, testService); in testOnEnabledForegroundNfcFServiceChangedWithNonNullService()131 assertThat(manager.mEnabledFgServiceName).isEqualTo(testService); in testOnEnabledForegroundNfcFServiceChangedWithNonNullService()170 manager.mActiveServiceName = testService; in testOnHostEmulationDataWithDisabledResolvedServiceFromActiveService_ReturnsEarly()183 manager.mActiveServiceName = testService; in testOnHostEmulationDataWithEnabledResolvedServiceFromCache_BindToService()184 manager.mEnabledFgServiceName = testService; in testOnHostEmulationDataWithEnabledResolvedServiceFromCache_BindToService()186 manager.mServiceName = testService; in testOnHostEmulationDataWithEnabledResolvedServiceFromCache_BindToService()200 manager.mActiveServiceName = testService; in testOnHostEmulationDataWithValidExistingService_BindToService()201 manager.mEnabledFgServiceName = testService; in testOnHostEmulationDataWithValidExistingService_BindToService()204 manager.mServiceName = testService; in testOnHostEmulationDataWithValidExistingService_BindToService()[all …]
179 TestService testService = new TestService(InstrumentationRegistry.getContext()); in testGetSystemService_notRegistered_delegatesToBaseContext() local180 TestContext testContext = new TestContext(testService); in testGetSystemService_notRegistered_delegatesToBaseContext()199 assertThat(sandboxedSdkContext.getSystemService("ignored")).isSameInstanceAs(testService); in testGetSystemService_notRegistered_delegatesToBaseContext()204 TestService testService = new TestService(InstrumentationRegistry.getContext()); in testGetSystemService_registered_mutatesService() local205 TestContext testContext = new TestContext(testService); in testGetSystemService_registered_mutatesService()281 TestService testService = new TestService(InstrumentationRegistry.getContext()); in testCreateContextWithNewBase() local282 TestContext baseContext = new TestContext(testService); in testCreateContextWithNewBase()294 Context newBaseContext = new TestContext(testService); in testCreateContextWithNewBase()
343 auto testService = ndk::SharedRefBase::make<TestService>(); in start_test_service() local346 AVmPayload_runVsockRpcServer(testService->asBinder().get(), testService->PORT, callback, in start_test_service()
151 ITestService testService = in startVm() local154 return new RemoteTestServiceDelegate(testService); in startVm()
201 ITestService testService = ITestService.Stub.asInterface(binder); in run()202 int ret = testService.addInteger(123, 456); in run()
1208 ITestService testService = in launchVmAndGetCdis()1211 vmCdis.cdiAttest = testService.insecurelyExposeAttestationCdi(); in launchVmAndGetCdis()1212 vmCdis.instanceSecret = testService.insecurelyExposeVmInstanceSecret(); in launchVmAndGetCdis()1838 (testService, ts) -> { in canReadFileFromAssets_debugFull()1839 ts.mFileContent = testService.readFromFile("/mnt/apk/assets/file.txt"); in canReadFileFromAssets_debugFull()
678 void runTests(ITestService testService, TestResults testResults) throws Exception; in runTests() argument