/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | KeyguardQsUserSwitchControllerTest.kt | 107 `when`(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in setUp() 126 `when`(keyguardStateController.isKeyguardGoingAway).thenReturn(true) in testAvatarExistsWhenKeyguardGoingAway() 134 `when`(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in testAvatarExistsWhenKeyguardShown() 142 `when`(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in testAvatarGoneWhenKeyguardGone()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
D | FromPrimaryBouncerTransitionInteractor.kt | 101 keyguardInteractor.isKeyguardGoingAway in <lambda>() 103 .collect { (isKeyguardGoingAway, lastStartedTransitionStep) -> in <lambda>() method 105 isKeyguardGoingAway && in <lambda>()
|
D | FromAlternateBouncerTransitionInteractor.kt | 108 keyguardInteractor.isKeyguardGoingAway in <lambda>() 110 .collect { (isKeyguardGoingAway, keyguardState) -> in <lambda>() method 111 if (isKeyguardGoingAway && keyguardState == KeyguardState.ALTERNATE_BOUNCER) { in <lambda>()
|
D | FromLockscreenTransitionInteractor.kt | 209 keyguardInteractor.isKeyguardGoingAway in <lambda>() 212 val (isKeyguardGoingAway, lastStartedStep) = pair in <lambda>() constant 213 if (isKeyguardGoingAway && lastStartedStep.to == KeyguardState.LOCKSCREEN) { in <lambda>()
|
D | KeyguardInteractor.kt | 138 val isKeyguardGoingAway: Flow<Boolean> = repository.isKeyguardGoingAway in <lambda>() constant
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | FakeKeyguardStateController.java | 76 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in FakeKeyguardStateController
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/ |
D | FakeKeyguardStateController.java | 77 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in FakeKeyguardStateController
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardStateController.java | 102 boolean isKeyguardGoingAway(); in isKeyguardGoingAway() method
|
D | KeyguardStateControllerImpl.java | 282 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in KeyguardStateControllerImpl 400 pw.println(" isKeyguardGoingAway: " + isKeyguardGoingAway()); in dump()
|
D | KeyguardQsUserSwitchController.java | 255 || mKeyguardStateController.isKeyguardGoingAway(); in updateKeyguardShowing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
D | KeyguardRepository.kt | 90 val isKeyguardGoingAway: Flow<Boolean> constant 309 override val isKeyguardGoingAway: Flow<Boolean> = conflatedCallbackFlow { in isKeyguardShowing() constant 314 keyguardStateController.isKeyguardGoingAway, in isKeyguardShowing() 324 keyguardStateController.isKeyguardGoingAway, in isKeyguardShowing()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardViewController.java | 104 void setKeyguardGoingAwayState(boolean isKeyguardGoingAway); in setKeyguardGoingAwayState() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | LightBarTransitionsController.java | 115 if (mDisplayId != displayId || mKeyguardStateController.isKeyguardGoingAway() && !forced) { in appTransitionPending() 137 if (mDisplayId != displayId || mKeyguardStateController.isKeyguardGoingAway() && !forced) { in appTransitionStarting()
|
D | StatusBarKeyguardViewManager.java | 878 if (!mDozing && !mKeyguardStateController.isKeyguardGoingAway()) { in setOccluded() 1295 public void setKeyguardGoingAwayState(boolean isKeyguardGoingAway) { in setKeyguardGoingAwayState() argument 1296 mNotificationShadeWindowController.setKeyguardGoingAway(isKeyguardGoingAway); in setKeyguardGoingAwayState()
|
D | HeadsUpAppearanceController.java | 331 || mKeyguardStateController.isKeyguardGoingAway()) in shouldBeVisible()
|
D | ScrimController.java | 1002 if (mKeyguardStateController.isKeyguardGoingAway()) { in calculateBackStateForState() 1123 if (mKeyguardStateController.isKeyguardGoingAway()) { in updateScrims()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/ |
D | KeyguardRepositoryImplTest.kt | 350 fun isKeyguardGoingAway() = in <lambda>() method 352 whenever(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in <lambda>() 354 val job = underTest.isKeyguardGoingAway.onEach { latest = it }.launchIn(this) in <lambda>() 361 whenever(keyguardStateController.isKeyguardGoingAway).thenReturn(true) in <lambda>() 365 whenever(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | DynamicPrivacyController.java | 86 || mKeyguardStateController.isKeyguardGoingAway() in isDynamicallyUnlocked()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardUnlockAnimationController.kt | 405 if (keyguardStateController.isKeyguardGoingAway && in <lambda>() 414 if (!keyguardStateController.isKeyguardGoingAway && in <lambda>() 623 !keyguardStateController.isKeyguardGoingAway) { in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | LockIconViewControllerBaseTest.java | 143 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in setUp() 190 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in setupShowLockIcon()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | DynamicPrivacyControllerTest.java | 92 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in testNotifiedWhenKeyguardFadingAwayChanges()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | SensitiveContentCoordinator.kt | 70 if (keyguardStateController.isKeyguardGoingAway() || in bindCoordinator()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/ |
D | FakeKeyguardRepository.kt | 91 override val isKeyguardGoingAway: Flow<Boolean> = _isKeyguardGoingAway constant in com.android.systemui.keyguard.data.repository.FakeKeyguardRepository
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediatorTest.java | 432 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(true); in startMockKeyguardExitAnimation() 442 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in cancelMockKeyguardExitAnimation()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/ |
D | DefaultTransitionHandler.java | 297 if (info.getType() == WindowManager.TRANSIT_WAKE && !info.isKeyguardGoingAway()) { in startAnimation() 568 if (info.isKeyguardGoingAway()) { in loadAnimation()
|