/frameworks/base/packages/SettingsLib/tests/robotests/testutils/com/android/settingslib/testutils/shadow/ |
D | ShadowUserManager.java | 45 protected List<UserInfo> getProfiles() { in getProfiles() method in ShadowUserManager 62 protected List<UserInfo> getProfiles(@UserIdInt int userHandle) { in getProfiles() method in ShadowUserManager 63 return getProfiles(); in getProfiles()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/settings/ |
D | UserTrackerImplTest.kt | 74 `when`(userManager.getProfiles(anyInt())).thenAnswer { invocation -> in <lambda>() 134 verify(userManager).getProfiles(testID) in <lambda>() 154 verify(userManager).getProfiles(newID) in <lambda>() 171 `when`(userManager.getProfiles(anyInt())).thenAnswer { invocation -> in <lambda>() 228 `when`(userManager.getProfiles(anyInt())).thenAnswer { invocation -> in <lambda>()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/app/ |
D | IntentForwarderActivityTest.java | 153 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in forwardToManagedProfile_canForward_sendIntent() 186 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in forwardToManagedProfile_cannotForward_sendIntent() 207 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in forwardToManagedProfile_noManagedProfile_sendIntent() 225 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in launchInSameProfile_chooserIntent() 263 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in forwardToManagedProfile_canForward_selectorIntent() 569 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in forwardToManagedProfile_LoggingTest() 596 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in forwardToParent_LoggingTest() 622 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in setupShouldSkipDisclosureTest()
|
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/ |
D | RestrictedLockUtilsTest.java | 186 when(mUserManager.getProfiles(mUserId)).thenReturn(Arrays.asList(userInfo, profileInfo)); in checkIfKeyguardFeaturesAreDisabled_doesMatchAllowedFeature_unifiedManagedProfile() 214 when(mUserManager.getProfiles(mUserId)).thenReturn(Arrays.asList(userInfo, profileInfo)); in checkIfKeyguardFeaturesAreDisabled_notMatchOtherFeatures_unifiedManagedProfile() 237 when(mUserManager.getProfiles(mUserId)).thenReturn(Arrays.asList(userInfo, profileInfo)); in checkIfKeyguardFeaturesAreDisabled_onlyMatchesProfile_separateManagedProfile() 273 when(mUserManager.getProfiles(mUserId)).thenReturn(Arrays.asList(userInfo, profileInfo)); in checkIfKeyguardFeaturesAreDisabled_onlyMatchesParent_profileParentPolicy()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | ISipService.aidl | 42 List<SipProfile> getProfiles(String opPackageName); in getProfiles() method
|
D | SipManager.java | 629 public @NonNull List<SipProfile> getProfiles() throws SipException { in getProfiles() method in SipManager 632 return mSipService.getProfiles(mContext.getOpPackageName()); in getProfiles()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/ |
D | UserTrackerImpl.kt | 132 val profiles = userManager.getProfiles(user) in setUserIdInternal() 168 val profiles = userManager.getProfiles(userId) in handleProfilesChanged()
|
/frameworks/base/telephony/java/android/service/euicc/ |
D | GetEuiccProfileInfoListResult.java | 70 public List<EuiccProfileInfo> getProfiles() { in getProfiles() method in GetEuiccProfileInfoListResult
|
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/ |
D | MockSystemServices.java | 263 when(userManager.getProfiles(anyInt())).thenAnswer( in addUser() 266 return getProfiles(userId12); in addUser() 272 List<UserInfo> profiles = getProfiles(userId13); in addUser() 312 private List<UserInfo> getProfiles(int userId) { in getProfiles() method in MockSystemServices
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
D | RestrictedLockUtilsInternal.java | 353 List<UserInfo> userProfiles = um.getProfiles(userId); in getManagedProfileId() 474 for (UserInfo userInfo : UserManager.get(context).getProfiles(userId)) { in checkIfPasswordQualityIsSet() 545 for (UserInfo userInfo : UserManager.get(context).getProfiles(userId)) { in checkForLockSetting() 676 for (UserInfo userInfo : um.getProfiles(UserHandle.myUserId())) { in isAdminInCurrentUserOrProfile()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | UserManagerServiceCreateProfileTest.java | 90 mUserManagerService.getProfiles(UserHandle.USER_SYSTEM, /*excludeDying*/ false); in testGetProfiles() 96 users = mUserManagerService.getProfiles(secondaryUser.id, /*excludeDying*/ false); in testGetProfiles()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
D | CachedBluetoothDevice.java | 755 public List<LocalBluetoothProfile> getProfiles() { in getProfiles() method in CachedBluetoothDevice 908 for (LocalBluetoothProfile profile : getProfiles()) { in getMaxConnectionState() 947 for (LocalBluetoothProfile profile : getProfiles()) { in getConnectionSummary() 1060 for (LocalBluetoothProfile profile : getProfiles()) { in getCarConnectionSummary()
|
D | BluetoothUtils.java | 105 List<LocalBluetoothProfile> profiles = cachedDevice.getProfiles(); in getBtClassDrawableWithDescription()
|
/frameworks/base/core/java/android/os/ |
D | IUserManager.aidl | 60 List<UserInfo> getProfiles(int userId, boolean enabledOnly); in getProfiles() method
|
D | UserManager.java | 3661 public List<UserInfo> getProfiles(@UserIdInt int userId) { in getProfiles() method in UserManager 3663 return mService.getProfiles(userId, false /* enabledOnly */); in getProfiles() 3716 return mService.getProfiles(userId, true /* enabledOnly */); in getEnabledProfiles() 3751 return getProfiles(true); in getEnabledProfiles() 3767 return getProfiles(false); in getAllProfiles() 3781 private @NonNull List<UserHandle> getProfiles(boolean enabledOnly) { in getProfiles() method in UserManager
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | SecurityControllerTest.java | 160 when(mUserManager.getProfiles(anyInt())).thenReturn(profiles); in testWorkAccount()
|
D | BluetoothControllerImplTest.java | 226 when(device.getProfiles()).thenReturn(profiles); in testOnActiveDeviceChanged_updatesAudioActive()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | SubscriptionInfoUpdater.java | 864 List<EuiccProfileInfo> list = result.getProfiles(); in updateEmbeddedSubscriptionsCache() 868 logd("blockingGetEuiccProfileInfoList: got " + result.getProfiles().size() in updateEmbeddedSubscriptionsCache() 875 + ". Null profile list=" + (result.getProfiles() == null)); in updateEmbeddedSubscriptionsCache()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationControllerTest.java | 342 when(mUserManager.getProfiles(anyInt())).thenReturn(Collections.singletonList( in disclosure_orgOwnedDeviceWithManagedProfile_noOrganizationName() 364 when(mUserManager.getProfiles(anyInt())).thenReturn(Collections.singletonList( in disclosure_orgOwnedDeviceWithManagedProfile_withOrganizationName()
|
D | NotificationLockscreenUserManagerTest.java | 121 when(mUserManager.getProfiles(currentUserId)).thenReturn(Lists.newArrayList( in setUp()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | IntentForwarderActivity.java | 338 List<UserInfo> relatedUsers = mInjector.getUserManager().getProfiles(UserHandle.myUserId()); in getManagedProfile()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
D | BaseLockSettingsServiceTests.java | 163 when(mUserManager.getProfiles(eq(profile.id))).thenReturn(mPrimaryUserProfiles); in setUp_baseServices()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | BluetoothControllerImpl.java | 302 for (LocalBluetoothProfile profile : device.getProfiles()) { in updateAudioProfile()
|
D | SecurityControllerImpl.java | 200 for (final UserInfo userInfo : mUserManager.getProfiles(userId)) { in getWorkProfileUserId()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationLockscreenUserManagerImpl.java | 531 for (UserInfo user : mUserManager.getProfiles(mCurrentUserId)) { in updateCurrentProfilesCache()
|