HomeSort by relevance Sort by last modified time
    Searched refs:dozing (Results 1 - 12 of 12) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeReceiver.java 23 void setDozing(boolean dozing);
DozeLog.java 117 public static void traceDozing(Context context, boolean dozing) {
121 log("dozing " + dozing);
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DozeHostFake.java 32 boolean dozing; field in class:DozeHostFake
49 dozing = true;
59 dozing = false;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DozeScrimController.java 87 public void setDozing(boolean dozing) {
88 if (mDozing == dozing) return;
89 mDozing = dozing;
95 /** When dozing, fade screen contents in and out using the front scrim. */
103 Log.d(TAG, "Pulse supressed. Dozing: " + mDozeParameters + " had callback? "
StatusBarWindowManager.java 146 || (state.dozing && mDozeParameters.getAlwaysOn());
155 if (state.isKeyguardShowingAndNotOccluded() || state.dozing) {
290 if (state.dozing) {
406 public void setDozing(boolean dozing) {
407 mCurrentState.dozing = dozing;
459 boolean dozing; field in class:StatusBarWindowManager.State
StatusBarKeyguardViewManager.java 116 // Dismiss action to be launched when we stop dozing or the keyguard is gone.
243 // If we're dozing, this needs to be delayed until after we wake up - unless we're
244 // wake-and-unlocking, because there dozing will last until the end of the transition.
322 public void setDozing(boolean dozing) {
323 if (mDozing != dozing) {
324 mDozing = dozing;
325 if (dozing || mBouncer.needsFullscreenBouncer() || mOccluded) {
326 reset(dozing /* hideBouncerWhenShowing */);
330 if (!dozing) {
380 // setDozing(false) will call reset once we stop dozing
    [all...]
KeyguardBottomAreaView.java     [all...]
NotificationPanelView.java     [all...]
StatusBar.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
KeyguardIndicationController.java 299 // When dozing we ignore any text color and use white instead, because
467 public void setDozing(boolean dozing) {
468 if (mDozing == dozing) {
471 mDozing = dozing;
  /frameworks/base/services/core/java/com/android/server/display/
AutomaticBrightnessController.java 66 // we don't erroneously keep the short-term model if the device is dozing but the display is
176 // The current display policy. This is useful, for example, for knowing when we're dozing,
245 // While dozing, the application processor may be suspended which will prevent us from
248 // and hold onto the last computed screen auto brightness. We save the dozing flag for
250 boolean dozing = (displayPolicy == DisplayPowerRequest.POLICY_DOZE);
263 if (userInitiatedChange && enable && !dozing) {
266 changed |= setLightSensorEnabled(enable && !dozing);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AlarmManagerService.java     [all...]

Completed in 381 milliseconds