/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/ |
D | DozeHostFake.java | 29 boolean dozing; field in DozeHostFake 46 dozing = true; in startDozing() 56 dozing = false; in stopDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationDozeHelper.java | 82 public void setDozing(Consumer<Float> listener, boolean dozing, in setDozing() argument 85 startIntensityAnimation(a -> listener.accept((Float) a.getAnimatedValue()), dozing, in setDozing() 104 listener.accept(dozing ? 1f : 0f); in setDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | DozeScrimController.java | 104 public void setDozing(boolean dozing) { in setDozing() argument 105 if (mDozing == dozing) return; in setDozing() 106 mDozing = dozing; in setDozing()
|
D | StatusBarWindowController.java | 227 || (state.dozing && mDozeParameters.getAlwaysOn()); in applyKeyguardFlags() 234 if (state.dozing) { in applyKeyguardFlags() 244 if (state.dozing || bypassOnKeyguard) { in applyKeyguardFlags() 254 if (state.isKeyguardShowingAndNotOccluded() || state.dozing) { in adjustScreenOrientation() 541 public void setDozing(boolean dozing) { in setDozing() argument 542 mCurrentState.dozing = dozing; in setDozing() 684 boolean dozing; field in StatusBarWindowController.State
|
D | StatusBarKeyguardViewManager.java | 448 private void setDozing(boolean dozing) { in setDozing() argument 449 if (mDozing != dozing) { in setDozing() 450 mDozing = dozing; in setDozing() 451 if (dozing || mBouncer.needsFullscreenBouncer() || mOccluded) { in setDozing() 452 reset(dozing /* hideBouncerWhenShowing */); in setDozing() 456 if (!dozing) { in setDozing()
|
D | LockIcon.java | 430 boolean dozing, boolean keyguardJustShown) { in getAnimationIndexForTransition() argument 433 if (dozing && !pulsing) { in getAnimationIndexForTransition() 544 public void onDozingChanged(boolean dozing) { in onDozingChanged() argument 545 mDozing = dozing; in onDozingChanged()
|
D | NotificationIconContainer.java | 566 public void setDozing(boolean dozing, boolean fade, long delay) { in setDozing() argument 567 mDozing = dozing; in setDozing() 572 ((StatusBarIconView) view).setDozing(dozing, fade, delay); in setDozing()
|
D | KeyguardBottomAreaView.java | 729 public void setDozing(boolean dozing, boolean animate) { in setDozing() argument 730 mDozing = dozing; in setDozing() 735 if (dozing) { in setDozing()
|
D | NotificationPanelView.java | 3258 public void setDozing(boolean dozing, boolean animate, PointF wakeUpTouchLocation) { in setDozing() argument 3259 if (dozing == mDozing) return; in setDozing() 3260 mDozing = dozing; in setDozing() 3264 if (dozing) { in setDozing() 3273 final float dozeAmount = dozing ? 1 : 0; in setDozing()
|
D | StatusBar.java | 3561 boolean dozing = mDozingRequested && mState == StatusBarState.KEYGUARD in updateDozing() 3568 dozing = false; in updateDozing() 3571 mStatusBarStateController.setIsDozing(dozing); in updateDozing()
|
/frameworks/base/core/proto/android/view/ |
D | enums.proto | 31 // The display is dozing in a low power state; it is still on but is 35 // The display is dozing in a suspended low power state; it is still on
|
/frameworks/base/core/proto/android/os/ |
D | powermanager.proto | 55 // display controller. The device typically passes through the dozing 67 // The device is dozing. It is almost asleep but is allowing a special
|
D | enums.proto | 161 // manager is in the dozing state. 166 // is dozing. It currently has no effect unless the power manager is in 167 // the dozing state.
|
D | batterystats.proto | 89 // Total realtime duration measured with screen off or dozing. 91 // Total uptime duration measured with screen off or dozing. 93 // Total time the screen was dozing while the device was running on battery. 121 // Discharged points while screen was dozing. For historical reasons, 131 // Total amount of battery discharged while the screen was dozing in mAh.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeLog.java | 121 public static void traceDozing(Context context, boolean dozing) { in traceDozing() argument 125 log("dozing " + dozing); in traceDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | AmbientState.java | 187 public void setDozing(boolean dozing) { in setDozing() argument 188 mDozing = dozing; in setDozing()
|
D | NotificationStackScrollLayout.java | 4758 public void setDozing(boolean dozing, boolean animate, 4760 if (mAmbientState.isDozing() == dozing) { 4763 mAmbientState.setDozing(dozing);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationController.java | 608 public void setDozing(boolean dozing) { in setDozing() argument 609 if (mDozing == dozing) { in setDozing() 612 mDozing = dozing; in setDozing()
|
D | StatusBarIconView.java | 857 public void setDozing(boolean dozing, boolean fade, long delay) { in setDozing() argument 863 }, dozing, fade, delay, this); in setDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLogger.java | 267 private void setDozing(boolean dozing) { in setDozing() argument 269 mDozing = dozing; in setDozing()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | AutomaticBrightnessController.java | 328 boolean dozing = (displayPolicy == DisplayPowerRequest.POLICY_DOZE); in configure() 341 if (userInitiatedChange && enable && !dozing) { in configure() 344 changed |= setLightSensorEnabled(enable && !dozing); in configure()
|
/frameworks/base/core/proto/android/server/ |
D | powermanagerservice.proto | 119 // the dreaming or dozing state. Indicates whether a new dream should begin. 301 // The screen state to use while dozing. 303 // The screen brightness to use while dozing.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 2132 public void setDozing(boolean dozing) { in setDozing() argument 2133 if (dozing == mDozing) { in setDozing() 2136 mDozing = dozing; in setDozing()
|
/frameworks/base/services/core/java/com/android/server/ |
D | AlarmManagerService.java | 3449 final boolean dozing = mPendingIdleUntil != null; in getWhileIdleMinIntervalLocked() 3452 if (!dozing && !ebs) { in getWhileIdleMinIntervalLocked() 3455 if (dozing) { in getWhileIdleMinIntervalLocked()
|