Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
DRestrictedLockUtils.java128 EnforcedAdmin enforcedAdmin = null; in checkIfKeyguardFeaturesDisabled() local
136 if (enforcedAdmin == null) { in checkIfKeyguardFeaturesDisabled()
137 enforcedAdmin = new EnforcedAdmin(admin, userId); in checkIfKeyguardFeaturesDisabled()
157 if (enforcedAdmin == null) { in checkIfKeyguardFeaturesDisabled()
158 enforcedAdmin = new EnforcedAdmin(admin, userInfo.id); in checkIfKeyguardFeaturesDisabled()
175 if (enforcedAdmin == null) { in checkIfKeyguardFeaturesDisabled()
176 enforcedAdmin = new EnforcedAdmin(admin, userInfo.id); in checkIfKeyguardFeaturesDisabled()
185 return enforcedAdmin; in checkIfKeyguardFeaturesDisabled()
393 EnforcedAdmin enforcedAdmin = null; in checkIfPasswordQualityIsSet() local
404 if (enforcedAdmin == null) { in checkIfPasswordQualityIsSet()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSTile.java323 state.enforcedAdmin = admin; in checkIfRestrictionEnforcedByAdminOnly()
326 state.enforcedAdmin = null; in checkIfRestrictionEnforcedByAdminOnly()
369 mContext, mState.enforcedAdmin); in handleMessage()
557 public EnforcedAdmin enforcedAdmin; field in QSTile.State
577 || !Objects.equals(other.enforcedAdmin, enforcedAdmin); in copyTo()
587 if (enforcedAdmin == null) { in copyTo()
588 other.enforcedAdmin = null; in copyTo()
589 } else if (other.enforcedAdmin == null) { in copyTo()
590 other.enforcedAdmin = new EnforcedAdmin(enforcedAdmin); in copyTo()
592 enforcedAdmin.copyTo(other.enforcedAdmin); in copyTo()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DUserDetailView.java98 mContext, tag.enforcedAdmin); in onClick()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DUserSwitcherController.java685 record.enforcedAdmin = admin; in checkIfAddUserDisallowedByAdminOnly()
688 record.enforcedAdmin = null; in checkIfAddUserDisallowedByAdminOnly()
705 public EnforcedAdmin enforcedAdmin; field in UserSwitcherController.UserRecord
750 sb.append(" enforcedAdmin=").append(enforcedAdmin); in toString()