Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DUserHalServiceTest.java219 assertThat(myHalService.isUserAssociationSupported()).isFalse(); in testTakeSupportedProperties_supportedNoProperties()
232 assertThat(myHalService.isUserAssociationSupported()).isFalse(); in testTakeSupportedProperties_supportedFewProperties()
246 assertThat(myHalService.isUserAssociationSupported()).isFalse(); in testTakeSupportedProperties_supportedAllCorePropertiesButEnabledPropertyNotSet()
260 assertThat(myHalService.isUserAssociationSupported()).isFalse(); in testTakeSupportedProperties_supportedAllCorePropertiesButDisabled()
274 assertThat(myHalService.isUserAssociationSupported()).isFalse(); in testTakeSupportedProperties_supportedAllCoreProperties()
289 assertThat(myHalService.isUserAssociationSupported()).isTrue(); in testTakeSupportedProperties_supportedAllPropertiesButDisabled()
304 assertThat(myHalService.isUserAssociationSupported()).isTrue(); in testTakeSupportedProperties_supportedAllPropertiesButEnablePropertyNotSet()
319 assertThat(myHalService.isUserAssociationSupported()).isTrue(); in testTakeSupportedProperties_supportedAllProperties()
/packages/services/Car/service/src/com/android/car/hal/
DUserHalService.java271 public boolean isUserAssociationSupported() { in isUserAssociationSupported() method in UserHalService
282 Preconditions.checkState(isUserAssociationSupported(), USER_ASSOCIATION_UNSUPPORTED_MSG); in checkUserAssociationSupported()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/
DBaseCarUserServiceTestCase.java921 when(mUserHal.isUserAssociationSupported()).thenReturn(result); in mockUserHalUserAssociationSupported()
/packages/services/Car/service/src/com/android/car/user/
DCarUserService.java1801 return mHal.isUserAssociationSupported(); in isUserHalUserAssociationSupported()