/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardLifecyclesDispatcher.java | 113 private final ScreenLifecycle mScreenLifecycle; field in KeyguardLifecycleHandler 120 mScreenLifecycle = screenLifecycle; in KeyguardLifecycleHandler() 136 case SCREEN_TURNING_ON -> mScreenLifecycle.dispatchScreenTurningOn(); in handleMessage() 137 case SCREEN_TURNED_ON -> mScreenLifecycle.dispatchScreenTurnedOn(); in handleMessage() 138 case SCREEN_TURNING_OFF -> mScreenLifecycle.dispatchScreenTurningOff(); in handleMessage() 139 case SCREEN_TURNED_OFF -> mScreenLifecycle.dispatchScreenTurnedOff(); in handleMessage()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/ |
D | QSCustomizerController.java | 64 private final ScreenLifecycle mScreenLifecycle; field in QSCustomizerController 117 mScreenLifecycle = screenLifecycle; in QSCustomizerController() 259 && mScreenLifecycle.getScreenState() != ScreenLifecycle.SCREEN_OFF; in hide()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/wmshell/ |
D | WMShellTest.kt | 91 @Mock private lateinit var mScreenLifecycle: ScreenLifecycle variable in com.android.systemui.wmshell.WMShellTest 134 mScreenLifecycle, in setUp() 156 verify(mScreenLifecycle).addObserver(any(ScreenLifecycle.Observer::class.java)) in initOneHanded_registersCallbacks()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationControllerBaseTest.java | 166 protected ScreenLifecycle mScreenLifecycle; field in KeyguardIndicationControllerBaseTest 229 when(mScreenLifecycle.getScreenState()).thenReturn(SCREEN_ON); in setUp() 290 mAuthController, mLockPatternUtils, mScreenLifecycle, in createController() 324 verify(mScreenLifecycle).addObserver(mScreenObserverCaptor.capture()); in createController()
|
D | KeyguardIndicationControllerTest.java | 383 when(mScreenLifecycle.getScreenState()).thenReturn(SCREEN_OFF); in transientIndication_visibleWhenWokenUp() 1601 when(mScreenLifecycle.getScreenState()).thenReturn(SCREEN_TURNING_ON); in screenIsTurningOn()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/ |
D | UdfpsControllerTest.java | 156 private ScreenLifecycle mScreenLifecycle; field in UdfpsControllerTest 289 reset(mScreenLifecycle); in initUdfpsController() 305 mScreenLifecycle, in initUdfpsController() 337 verify(mScreenLifecycle).addObserver(mScreenObserverCaptor.capture()); in initUdfpsController()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
D | WMShell.java | 132 private final ScreenLifecycle mScreenLifecycle; field in WMShell 231 mScreenLifecycle = screenLifecycle; in WMShell() 399 mScreenLifecycle.addObserver(new ScreenLifecycle.Observer() { in initOneHanded()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationController.java | 233 private final ScreenLifecycle mScreenLifecycle; field in KeyguardIndicationController 335 mScreenLifecycle = screenLifecycle; in KeyguardIndicationController() 337 mScreenLifecycle.addObserver(mScreenObserver); in KeyguardIndicationController() 1407 } else if (mScreenLifecycle.getScreenState() == SCREEN_ON) { in onBiometricHelp() 1705 } else if (mScreenLifecycle.getScreenState() == SCREEN_ON) { in showErrorMessageNowOrLater()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesImplTest.java | 389 private final ScreenLifecycle mScreenLifecycle = new ScreenLifecycle(mDumpManager); field in CentralSurfacesImplTest 579 mScreenLifecycle, in createCentralSurfaces() 650 mScreenLifecycle.addObserver(mCentralSurfaces.mScreenObserver); in createCentralSurfaces() 1077 mScreenLifecycle.dispatchScreenTurnedOff(); in deviceStateChange_unfolded_shadeExpanding_onKeyguard_closesQS() 1090 mScreenLifecycle.dispatchScreenTurnedOff(); in deviceStateChange_unfolded_shadeExpanded_onKeyguard_closesQS()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesImpl.java | 552 private final ScreenLifecycle mScreenLifecycle; field in CentralSurfacesImpl 754 mScreenLifecycle = screenLifecycle; in CentralSurfacesImpl() 870 mScreenLifecycle.addObserver(mScreenObserver); in start() 2092 && mScreenLifecycle.getScreenState() == ScreenLifecycle.SCREEN_TURNING_OFF)) { in updateIsKeyguard() 2723 return mScreenLifecycle.getScreenState() == ScreenLifecycle.SCREEN_OFF; in isScreenFullyOff()
|