Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerTest.java866 final UserProperties userProps = mUserManager.getUserProperties(UserHandle.of(userId)); in testUserProperties() local
870 assertThat(userProps.getShowInLauncher()).isEqualTo(typeProps.getShowInLauncher()); in testUserProperties()
871 assertThat(userProps.getShowInSettings()).isEqualTo(typeProps.getShowInSettings()); in testUserProperties()
872 assertThat(userProps.getUseParentsContacts()).isFalse(); in testUserProperties()
873 assertThrows(SecurityException.class, userProps::getCrossProfileIntentFilterAccessControl); in testUserProperties()
874 assertThrows(SecurityException.class, userProps::getCrossProfileIntentResolutionStrategy); in testUserProperties()
875 assertThrows(SecurityException.class, userProps::getStartWithParent); in testUserProperties()
876 assertThrows(SecurityException.class, userProps::getInheritDevicePolicy); in testUserProperties()
877 assertThat(userProps.isMediaSharedWithParent()).isFalse(); in testUserProperties()
878 assertThat(userProps.isCredentialShareableWithParent()).isTrue(); in testUserProperties()
[all …]
H A DUserManagerServiceUserTypeTest.java85 final UserProperties.Builder userProps = new UserProperties.Builder() in testUserTypeBuilder_createUserType() local
113 .setDefaultUserProperties(userProps) in testUserTypeBuilder_createUserType()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DContentProviderHelper.java201 final UserProperties userProps = umInternal.getUserProperties(userId); in getContentProviderImpl() local
203 userProps != null && userProps.isMediaSharedWithParent(); in getContentProviderImpl()