Home
last modified time | relevance | path

Searched refs:keyguardOccluded (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DEventLogTags.logtags14 ## keyguardShowing: 1: Keyguard shown to the user (or keyguardOccluded)
15 ## keyguardOccluded: 1: Keyguard active, but another activity is occluding it
19 36004 sysui_status_bar_state (state|1),(keyguardShowing|1),(keyguardOccluded|1),(bouncerShowing|1),…
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarWindowCallback.java19 void onStateChanged(boolean keyguardShowing, boolean keyguardOccluded, boolean bouncerShowing); in onStateChanged() argument
DScrimController.java1283 public void setKeyguardOccluded(boolean keyguardOccluded) { in setKeyguardOccluded() argument
1284 mKeyguardOccluded = keyguardOccluded; in setKeyguardOccluded()
DStatusBar.java3293 boolean keyguardOccluded, boolean bouncerShowing, boolean secure,
3299 | ((keyguardOccluded ? 1 : 0) << 9)
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardListenModel.kt40 val keyguardOccluded: Boolean, constant in com.android.keyguard.KeyguardFingerprintListenModel
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardListenQueueTest.kt72 keyguardOccluded = false,
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DOverviewProxyService.java738 private void onStatusBarStateChanged(boolean keyguardShowing, boolean keyguardOccluded, in onStatusBarStateChanged() argument
741 keyguardShowing && !keyguardOccluded) in onStatusBarStateChanged()
743 keyguardShowing && keyguardOccluded) in onStatusBarStateChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/
DSystemActions.java164 mNotificationShadeCallback = (keyguardShowing, keyguardOccluded, bouncerShowing) -> in SystemActions()