Searched refs:futureConnection (Results 1 – 1 of 1) sorted by relevance
457 FutureConnection<ITestService> futureConnection = mServiceConnections.get(componentName); in getTestService() local458 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()