Home
last modified time | relevance | path

Searched refs:occluded (Results 1 – 25 of 39) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/domain/interactor/
DStatusBarKeyguardViewManagerInteractor.kt40 val occluded: Boolean, in <lambda>() constant in com.android.systemui.statusbar.domain.interactor.OccludedState
72 return@map OccludedState(occluded = true, animate = false) in <lambda>()
83 return@map OccludedState(occluded = false, animate = false) in <lambda>()
101 val occluded = in <lambda>() constant
104 OccludedState(occluded = occluded, animate = false) in <lambda>()
112 it.occluded in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/
DFakeKeyguardStateController.java31 public void notifyKeyguardState(boolean showing, boolean occluded) { in notifyKeyguardState() argument
33 mOccluded = occluded; in notifyKeyguardState()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
DFakeKeyguardStateController.java73 public void setOccluded(boolean occluded) { in setOccluded() argument
74 mIsOccluded = occluded; in setOccluded()
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
DKeyguardServiceDelegate.java84 volatile boolean occluded; field in KeyguardServiceDelegate.KeyguardState
101 occluded = false; in reset()
218 if (mKeyguardState.occluded) {
219 mKeyguardService.setOccluded(mKeyguardState.occluded, false /* animate */);
286 mKeyguardState.occluded = isOccluded; in setOccluded()
290 return mKeyguardState.occluded; in isOccluded()
468 proto.write(OCCLUDED, mKeyguardState.occluded); in dumpDebug()
480 pw.println(prefix + "occluded=" + mKeyguardState.occluded); in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardStateControllerImpl.java194 public void notifyKeyguardState(boolean showing, boolean occluded) { in notifyKeyguardState() argument
195 if (mShowing == showing && mOccluded == occluded) return; in notifyKeyguardState()
197 mOccluded = occluded; in notifyKeyguardState()
198 mKeyguardUpdateMonitor.setKeyguardShowing(showing, occluded); in notifyKeyguardState()
200 "Keyguard showing: " + showing + " occluded: " + occluded); in notifyKeyguardState()
DKeyguardStateController.java201 default void notifyKeyguardState(boolean showing, boolean occluded) {} in notifyKeyguardState() argument
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/sysui/
DKeyguardChangeListener.java26 default void onKeyguardVisibilityChanged(boolean visible, boolean occluded, in onKeyguardVisibilityChanged() argument
DShellController.java273 void onKeyguardVisibilityChanged(boolean visible, boolean occluded, boolean animatingDismiss) { in onKeyguardVisibilityChanged() argument
275 + "occluded=%b animatingDismiss=%b", visible, occluded, animatingDismiss); in onKeyguardVisibilityChanged()
277 listener.onKeyguardVisibilityChanged(visible, occluded, animatingDismiss); in onKeyguardVisibilityChanged()
368 public void onKeyguardVisibilityChanged(boolean visible, boolean occluded, in onKeyguardVisibilityChanged() argument
371 ShellController.this.onKeyguardVisibilityChanged(visible, occluded, in onKeyguardVisibilityChanged()
DShellInterface.java50 default void onKeyguardVisibilityChanged(boolean visible, boolean occluded, in onKeyguardVisibilityChanged() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DWindowManagerOcclusionManager.kt258 fun onKeyguardServiceSetOccluded(occluded: Boolean) { in <lambda>()
259 Log.d(TAG, "#onKeyguardServiceSetOccluded($occluded)") in <lambda>()
260 keyguardOcclusionInteractor.setWmNotifiedShowWhenLockedActivityOnTop(occluded) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DFromDozingTransitionInteractor.kt129 occluded, in <lambda>() method
140 } else if (occluded) { in <lambda>()
DFromOccludedTransitionInteractor.kt160 .filterRelevantKeyguardStateAnd { (occluded, showing) -> !occluded && !showing } in <lambda>() method
DFromPrimaryBouncerTransitionInteractor.kt152 .collect { (_, _, occluded, isDreaming, _, isIdleOnCommunal) -> in <lambda>() method
154 if (occluded && !isDreaming) { in <lambda>()
DKeyguardInteractor.kt297 combine(isKeyguardShowing, isKeyguardOccluded) { showing, occluded -> showing && !occluded } in <lambda>() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DOccludingAppDeviceEntryInteractor.kt78 ) { occluded, showing, primaryBouncerShowing, alternateBouncerVisible, dozing -> in <lambda>() method
79 occluded && in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardViewController.java88 void setOccluded(boolean occluded, boolean animate); in setOccluded() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShadeWindowController.java75 default void setKeyguardOccluded(boolean occluded) {} in setKeyguardOccluded() argument
/frameworks/base/services/core/java/com/android/server/wm/
DKeyguardController.java440 final boolean occluded = getDisplayState(displayId).mOccluded; in handleOccludedChanged()
444 mWindowManager.mPolicy.onKeyguardOccludedChangedLw(occluded); in handleOccludedChanged()
448 final int type = occluded ? TRANSIT_KEYGUARD_OCCLUDE : TRANSIT_KEYGUARD_UNOCCLUDE; in handleOccludedChanged()
449 final int flag = occluded ? TRANSIT_FLAG_KEYGUARD_OCCLUDING in handleOccludedChanged()
452 final Task trigger = (occluded && topActivity != null) in handleOccludedChanged()
DEventLogTags.logtags52 …n (Display Id|1|5),(keyguardShowing|1),(aodShowing|1),(keyguardGoingAway|1),(occluded|1),(Reason|3)
73 31008 wm_set_keyguard_occluded (occluded|1),(animate|1),(transit|1),(Channel|3)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManager.java1067 public void setOccluded(boolean occluded, boolean animate) { in setOccluded() argument
1069 final boolean isOccluding = !wasOccluded && occluded; in setOccluded()
1070 final boolean isUnOccluding = wasOccluded && !occluded; in setOccluded()
1072 mKeyguardStateController.isShowing(), occluded); in setOccluded() local
1380 boolean occluded = mKeyguardStateController.isOccluded(); in updateStates()
1419 mLastOccluded = occluded; in updateStates()
DLegacyActivityStarterInternalImpl.kt211 val occluded = (keyguardStateController.isShowing && keyguardStateController.isOccluded) in <lambda>() constant
212 val deferred = !occluded in <lambda>()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/sysui/
DShellControllerTest.java469 public void onKeyguardVisibilityChanged(boolean visible, boolean occluded, in onKeyguardVisibilityChanged() argument
472 lastOccluded = occluded; in onKeyguardVisibilityChanged()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTestWindowManagerPolicy.java240 public void onKeyguardOccludedChangedLw(boolean occluded) { in onKeyguardOccludedChangedLw() argument
/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
DKeyguardUpdateMonitorLogger.kt243 fun logKeyguardShowingChanged(showing: Boolean, occluded: Boolean, visible: Boolean) { in logKeyguardShowingChanged()
249 bool2 = occluded in logKeyguardShowingChanged()
/frameworks/base/packages/SystemUI/docs/device-entry/
Dkeyguard.md29 #### On Lockscreen, occluded by an activity

12