Home
last modified time | relevance | path

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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DWindowManagerLockscreenVisibilityManager.kt90 private var isKeyguardGoingAway = false variable in com.android.systemui.keyguard.WindowManagerLockscreenVisibilityManager
105 if (isKeyguardGoingAway == visible) { in setSurfaceBehindVisibility()
122 isKeyguardGoingAway = true in setSurfaceBehindVisibility()
229 if (!isKeyguardGoingAway) { in endKeyguardGoingAwayAnimation()
243 isKeyguardGoingAway = false in endKeyguardGoingAwayAnimation()
DKeyguardUnlockAnimationController.kt452 if (keyguardStateController.isKeyguardGoingAway && in <lambda>()
461 if (!keyguardStateController.isKeyguardGoingAway && in <lambda>()
717 !keyguardStateController.isKeyguardGoingAway) { in <lambda>()
/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/
DFromGlanceableHubTransitionInteractor.kt170 keyguardInteractor.isKeyguardGoingAway in <lambda>()
171 .filterRelevantKeyguardStateAnd { isKeyguardGoingAway -> isKeyguardGoingAway } in <lambda>() method
DFromPrimaryBouncerTransitionInteractor.kt200 keyguardInteractor.isKeyguardGoingAway in <lambda>()
201 .filterRelevantKeyguardStateAnd { isKeyguardGoingAway -> isKeyguardGoingAway } in <lambda>() method
DFromLockscreenTransitionInteractor.kt278 keyguardInteractor.isKeyguardGoingAway in <lambda>()
279 .filterRelevantKeyguardStateAnd { isKeyguardGoingAway -> isKeyguardGoingAway } in <lambda>() method
DKeyguardTransitionAuditLogger.kt107 keyguardInteractor.isKeyguardGoingAway.collect { in start()
DKeyguardInteractor.kt250 val isKeyguardGoingAway: Flow<Boolean> = repository.isKeyguardGoingAway in <lambda>() constant
DFromAlternateBouncerTransitionInteractor.kt169 keyguardInteractor.isKeyguardGoingAway.filter { it }.map {}, // map to Unit in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DKeyguardRepositoryImplTest.kt311 fun isKeyguardGoingAway() = in <lambda>() method in com.android.systemui.keyguard.data.repository.KeyguardRepositoryImplTest
313 whenever(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in <lambda>()
315 val job = underTest.isKeyguardGoingAway.onEach { latest = it }.launchIn(this) in <lambda>()
322 whenever(keyguardStateController.isKeyguardGoingAway).thenReturn(true) in <lambda>()
327 whenever(keyguardStateController.isKeyguardGoingAway).thenReturn(false) in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/
DFakeKeyguardStateController.java80 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in FakeKeyguardStateController
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
DFakeKeyguardStateController.java88 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in FakeKeyguardStateController
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardStateController.java106 boolean isKeyguardGoingAway(); in isKeyguardGoingAway() method
DKeyguardStateControllerImpl.java302 public boolean isKeyguardGoingAway() { in isKeyguardGoingAway() method in KeyguardStateControllerImpl
420 pw.println(" isKeyguardGoingAway: " + isKeyguardGoingAway()); in dump()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardViewController.java103 void setKeyguardGoingAwayState(boolean isKeyguardGoingAway); in setKeyguardGoingAwayState() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DKeyguardRepository.kt110 val isKeyguardGoingAway: Flow<Boolean> in <lambda>() constant
441 override val isKeyguardGoingAway: Flow<Boolean> = conflatedCallbackFlow { in <lambda>() constant
446 keyguardStateController.isKeyguardGoingAway, in <lambda>()
456 keyguardStateController.isKeyguardGoingAway, 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/scene/domain/startable/
DScrimStartable.kt215 private fun onKeyguardFadedAway(isKeyguardGoingAway: Boolean) { in <lambda>()
216 if (isKeyguardGoingAway) { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarTransitionsController.java169 if (mDisplayId != displayId || mKeyguardStateController.isKeyguardGoingAway() && !forced) { in appTransitionPending()
188 if (mDisplayId != displayId || mKeyguardStateController.isKeyguardGoingAway() && !forced) { in appTransitionStarting()
DStatusBarKeyguardViewManager.java634 && !mKeyguardStateController.isKeyguardGoingAway() in beginShowingBouncer()
1103 if (!mDozing && !mKeyguardStateController.isKeyguardGoingAway()) { in setOccluded()
1533 public void setKeyguardGoingAwayState(boolean isKeyguardGoingAway) { in setKeyguardGoingAwayState() argument
1534 mNotificationShadeWindowController.setKeyguardGoingAway(isKeyguardGoingAway); in setKeyguardGoingAwayState()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicPrivacyControllerTest.java93 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in testNotifiedWhenKeyguardFadingAwayChanges()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DLegacyLockIconViewControllerBaseTest.java148 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in setUp()
201 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in setupShowLockIcon()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DSensitiveContentCoordinator.kt99 if (keyguardStateController.isKeyguardGoingAway || in bindCoordinator()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
DKeyguardViewMediatorTest.java729 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in lockAfterScreenTimeoutUsesValueFromSettings()
1058 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(true); in startMockKeyguardExitAnimation()
1068 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(false); in cancelMockKeyguardExitAnimation()
1166 when(mKeyguardStateController.isKeyguardGoingAway()).thenReturn(true); in pendingPinLockOnKeyguardGoingAway_doKeyguardLockedOnKeyguardVisibilityChanged()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeKeyguardRepository.kt103 override val isKeyguardGoingAway: Flow<Boolean> = _isKeyguardGoingAway constant in com.android.systemui.keyguard.data.repository.FakeKeyguardRepository

12