Home
last modified time | relevance | path

Searched refs:onKeyguard (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardLiftController.kt73 val onKeyguard = keyguardUpdateMonitor.isKeyguardVisible && in updateListeningState() constant
78 val shouldListen = (onKeyguard || bouncerVisible) && isFaceEnabled in updateListeningState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java367 boolean onKeyguard = mStatusBarStateController.getState() == StatusBarState.KEYGUARD; in updateRowStatesInternal()
369 if (onKeyguard && !mBypassController.getBypassEnabled()) { in updateRowStatesInternal()
387 row.setOnKeyguard(onKeyguard); in updateRowStatesInternal()
389 if (!onKeyguard) { in updateRowStatesInternal()
413 || (onKeyguard && !showOnKeyguard)) { in updateRowStatesInternal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSAnimator.java100 public void setOnKeyguard(boolean onKeyguard) { in setOnKeyguard() argument
101 mOnKeyguard = onKeyguard; in setOnKeyguard()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java852 if (mKeyguardBypassController.getBypassEnabled() && onKeyguard()) {
1360 if (mKeyguardBypassController.getBypassEnabled() && onKeyguard()) {
1480 return appearPosition + (onKeyguard() ? mTopPadding : mIntrinsicPadding);
1743 private boolean onKeyguard() {
2386 boolean footerViewOnLockScreen = expandableView == mFooterView && onKeyguard();
2566 boolean onKeyguard = mStatusBarState == StatusBarState.KEYGUARD;
2567 if (!onKeyguard) {
2582 || (mKeyguardBypassController.getBypassEnabled() && onKeyguard));
3436 || (mKeyguardBypassController.getBypassEnabled() && onKeyguard()
4487 if (view instanceof ExpandableNotificationRow && !onKeyguard()) {
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsImpl.java123 boolean onKeyguard = mContext.getSystemService( in showShutdownUi()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java2287 public void setOnKeyguard(boolean onKeyguard) {
2288 if (onKeyguard != mOnKeyguard) {
2291 mOnKeyguard = onKeyguard;
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayPolicy.java3216 final boolean onKeyguard = isStatusBarKeyguard() && !isKeyguardOccluded(); in updateLightStatusBarLw()
3217 final WindowState statusColorWin = onKeyguard ? mStatusBar : opaqueOrDimming; in updateLightStatusBarLw()
3218 if (statusColorWin != null && (statusColorWin == opaque || onKeyguard)) { in updateLightStatusBarLw()