Searched refs:disabledByPolicy (Results 1 – 9 of 9) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/ |
H A D | QSTileViewImpl.kt | 460 if (state.disabledByPolicy && state.state != Tile.STATE_UNAVAILABLE) { 509 state.disabledByPolicy, 510 getBackgroundColorForState(state.state, state.disabledByPolicy)) 537 getBackgroundColorForState(state.state, state.disabledByPolicy), 538 getLabelColorForState(state.state, state.disabledByPolicy), 539 getSecondaryLabelColorForState(state.state, state.disabledByPolicy), 540 getChevronColorForState(state.state, state.disabledByPolicy) 548 label.isEnabled = !state.disabledByPolicy 551 lastDisabledByPolicy = state.disabledByPolicy 620 state == Tile.STATE_UNAVAILABLE || disabledByPolicy -> colorUnavailable [all …]
|
H A D | QSIconViewImpl.java | 173 if (state.state != mState || state.disabledByPolicy != mDisabledByPolicy) { in setIcon() 176 mDisabledByPolicy = state.disabledByPolicy; in setIcon() 250 if (state.disabledByPolicy || state.state == Tile.STATE_UNAVAILABLE) { in getIconColorForState()
|
H A D | QSTileImpl.java | 537 state.disabledByPolicy = true; in checkIfRestrictionEnforcedByAdminOnly() 540 state.disabledByPolicy = false; in checkIfRestrictionEnforcedByAdminOnly() 600 if (mState.disabledByPolicy) { in handleMessage()
|
/aosp14/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/ |
H A D | QSTile.java | 169 public boolean disabledByPolicy; field in QSTile.State 213 || !Objects.equals(other.disabledByPolicy, disabledByPolicy) in copyTo() 229 other.disabledByPolicy = disabledByPolicy; in copyTo() 257 sb.append(",disabledByPolicy=").append(disabledByPolicy); in toStringBuilder()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/ |
H A D | QSTileViewImplTest.kt | 288 stateDisabledByPolicy.disabledByPolicy = true 306 stateDisabledByPolicy.disabledByPolicy = true 326 stateDisabledByPolicy.disabledByPolicy = true 351 stateDisabledByPolicy.disabledByPolicy = true 369 state.disabledByPolicy = true
|
H A D | QSIconViewImplTest.java | 134 s1.disabledByPolicy = true; in testIconColorDisabledByPolicy_sameAsUnavailable()
|
H A D | QSTileImplTest.java | 434 mTile.getState().disabledByPolicy = true; in testClickOnDisabledByPolicyDoesntClickLaunchesIntent()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/logging/ |
H A D | QSLogger.kt | 194 disabledByPolicy: Boolean, 209 bool1 = disabledByPolicy
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/ |
H A D | LocationTile.java | 125 if (state.disabledByPolicy == false) { in handleUpdateState()
|