Home
last modified time | relevance | path

Searched refs:mKeyguardController (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DActivityTaskSupervisor.java441 private KeyguardController mKeyguardController; field in ActivityTaskSupervisor
463 mKeyguardController = new KeyguardController(mService, this); in initialize()
491 return mKeyguardController; in getKeyguardController()
834 if (mKeyguardController.checkKeyguardVisibility(r) && r.allowMoveToFront()) { in realStartActivityLocked()
H A DActivityTaskManagerService.java472 KeyguardController mKeyguardController; field in ActivityTaskManagerService
1003 mKeyguardController = mTaskSupervisor.getKeyguardController(); in initialize()
2954 mKeyguardController.setKeyguardShown(displayContent.getDisplayId(), in setLockScreenShown()
2977 if (!mKeyguardController.isKeyguardLocked(DEFAULT_DISPLAY) in maybeHideLockedProfileActivityLocked()
3557 mKeyguardController.keyguardGoingAway(displayContent.getDisplayId(), flags); in keyguardGoingAway()
4046 return mKeyguardController.isKeyguardLocked(displayId); in isKeyguardLocked()
6909 && !mKeyguardController.isKeyguardOrAodShowing(DEFAULT_DISPLAY) in canShowErrorDialogs()
H A DBackNavigationController.java410 final KeyguardController kc = mWindowManagerService.mAtmService.mKeyguardController; in isKeyguardOccluded()
H A DActivityClientController.java1533 mService.mKeyguardController.dismissKeyguard(token, callback, message); in dismissKeyguard()
H A DDisplayPolicy.java784 mService.mAtmService.mKeyguardController.updateDeferTransitionForAod( in setAwake()
H A DWindowManagerService.java3067 if (mAtmService.mKeyguardController.isKeyguardShowing(DEFAULT_DISPLAY)) { in notifyKeyguardTrustedChanged()
3284 if (mAtmService.mKeyguardController.isShowingDream()) { in dismissKeyguard()
H A DTask.java3581 mAtmService.mKeyguardController.isDisplayOccluded(DEFAULT_DISPLAY);
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DDisplayContentTests.java929 mAtm.mKeyguardController.setKeyguardShown(window.getDisplayId(), true /* keyguardShowing */, in testOrientationDefinedByKeyguard()
934 mAtm.mKeyguardController.keyguardGoingAway(window.getDisplayId(), 0 /* flags */); in testOrientationDefinedByKeyguard()
2648 mAtm.mKeyguardController.setKeyguardShown(appWin.getDisplayId(), true /* keyguardShowing */, in testKeyguardGoingAwayWhileAodShown()
2652 mAtm.mKeyguardController.keyguardGoingAway(appWin.getDisplayId(), 0 /* flags */); in testKeyguardGoingAwayWhileAodShown()
H A DWindowManagerServiceTests.java217 doReturn(true).when(mWm.mAtmService.mKeyguardController).isShowingDream(); in testDismissKeyguardCanWakeUp()