Home
last modified time | relevance | path

Searched refs:isKeyguardGoingAway (Results 1 – 25 of 41) sorted by relevance

12

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DKeyguardQsUserSwitchControllerTest.kt107 `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/
DFromPrimaryBouncerTransitionInteractor.kt101 keyguardInteractor.isKeyguardGoingAway in <lambda>()
103 .collect { (isKeyguardGoingAway, lastStartedTransitionStep) -> in <lambda>() method
105 isKeyguardGoingAway && in <lambda>()
DFromAlternateBouncerTransitionInteractor.kt108 keyguardInteractor.isKeyguardGoingAway in <lambda>()
110 .collect { (isKeyguardGoingAway, keyguardState) -> in <lambda>() method
111 if (isKeyguardGoingAway && keyguardState == KeyguardState.ALTERNATE_BOUNCER) { in <lambda>()
DFromLockscreenTransitionInteractor.kt209 keyguardInteractor.isKeyguardGoingAway in <lambda>()
212 val (isKeyguardGoingAway, lastStartedStep) = pair in <lambda>() constant
213 if (isKeyguardGoingAway && lastStartedStep.to == KeyguardState.LOCKSCREEN) { in <lambda>()
DKeyguardInteractor.kt138 val isKeyguardGoingAway: Flow<Boolean> = repository.isKeyguardGoingAway in <lambda>() constant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DFakeKeyguardStateController.java76 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in FakeKeyguardStateController
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
DFakeKeyguardStateController.java77 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in FakeKeyguardStateController
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardStateController.java102 boolean isKeyguardGoingAway(); in isKeyguardGoingAway() method
DKeyguardStateControllerImpl.java282 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in KeyguardStateControllerImpl
400 pw.println(" isKeyguardGoingAway: " + isKeyguardGoingAway()); in dump()
DKeyguardQsUserSwitchController.java255 || mKeyguardStateController.isKeyguardGoingAway(); in updateKeyguardShowing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DKeyguardRepository.kt90 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/
DKeyguardViewController.java104 void setKeyguardGoingAwayState(boolean isKeyguardGoingAway); in setKeyguardGoingAwayState() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarTransitionsController.java115 if (mDisplayId != displayId || mKeyguardStateController.isKeyguardGoingAway() && !forced) { in appTransitionPending()
137 if (mDisplayId != displayId || mKeyguardStateController.isKeyguardGoingAway() && !forced) { in appTransitionStarting()
DStatusBarKeyguardViewManager.java878 if (!mDozing && !mKeyguardStateController.isKeyguardGoingAway()) { in setOccluded()
1295 public void setKeyguardGoingAwayState(boolean isKeyguardGoingAway) { in setKeyguardGoingAwayState() argument
1296 mNotificationShadeWindowController.setKeyguardGoingAway(isKeyguardGoingAway); in setKeyguardGoingAwayState()
DHeadsUpAppearanceController.java331 || mKeyguardStateController.isKeyguardGoingAway()) in shouldBeVisible()
DScrimController.java1002 if (mKeyguardStateController.isKeyguardGoingAway()) { in calculateBackStateForState()
1123 if (mKeyguardStateController.isKeyguardGoingAway()) { in updateScrims()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
DKeyguardRepositoryImplTest.kt350 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/
DDynamicPrivacyController.java86 || mKeyguardStateController.isKeyguardGoingAway() in isDynamicallyUnlocked()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardUnlockAnimationController.kt405 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/
DLockIconViewControllerBaseTest.java143 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/
DDynamicPrivacyControllerTest.java92 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in testNotifiedWhenKeyguardFadingAwayChanges()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DSensitiveContentCoordinator.kt70 if (keyguardStateController.isKeyguardGoingAway() || in bindCoordinator()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeKeyguardRepository.kt91 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/
DKeyguardViewMediatorTest.java432 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/
DDefaultTransitionHandler.java297 if (info.getType() == WindowManager.TRANSIT_WAKE && !info.isKeyguardGoingAway()) { in startAnimation()
568 if (info.isKeyguardGoingAway()) { in loadAnimation()

12