Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/backgroundactivity/src/android/server/wm/
DBackgroundActivityTestBase.java457 FutureConnection<ITestService> futureConnection = mServiceConnections.get(componentName); in getTestService() local
458 if (futureConnection == null) { in getTestService()
462 futureConnection = new FutureConnection<>(ITestService.Stub::asInterface); in getTestService()
463 mServiceConnections.put(componentName, futureConnection); in getTestService()
464 boolean success = mContext.bindService(bindIntent, futureConnection, in getTestService()
468 return new TestServiceClient(futureConnection.get(TEST_SERVICE_SETUP_TIMEOUT_MS)); in getTestService()