/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 | NotificationPanelView.java | 82 public void setDozing(boolean dozing) { in setDozing() argument 83 mDozing = dozing; in setDozing()
|
D | LockIcon.java | 136 void update(int newState, boolean pulsing, boolean dozing, boolean keyguardJustShown) { in update() argument 140 mDozing = dozing; in update() 202 boolean dozing, boolean keyguardJustShown) { in getAnimationIndexForTransition() argument 205 if (dozing && !pulsing) { in getAnimationIndexForTransition()
|
D | DozeScrimController.java | 103 public void setDozing(boolean dozing) { in setDozing() argument 104 if (mDozing == dozing) return; in setDozing() 105 mDozing = dozing; in setDozing()
|
D | StatusBarKeyguardViewManager.java | 485 private void setDozing(boolean dozing) { in setDozing() argument 486 if (mDozing != dozing) { in setDozing() 487 mDozing = dozing; in setDozing() 488 if (dozing || mBouncer.needsFullscreenBouncer() || mOccluded) { in setDozing() 489 reset(dozing /* hideBouncerWhenShowing */); in setDozing() 493 if (!dozing) { in setDozing()
|
D | DozeServiceHost.java | 206 dozing = in updateDozing() 214 dozing = false; in updateDozing() 217 mStatusBarStateController.setIsDozing(dozing); in updateDozing()
|
D | NotificationIconContainer.java | 581 public void setDozing(boolean dozing, boolean fade, long delay) { in setDozing() argument 582 mDozing = dozing; in setDozing() 587 ((StatusBarIconView) view).setDozing(dozing, fade, delay); in setDozing()
|
D | KeyguardBottomAreaView.java | 741 public void setDozing(boolean dozing, boolean animate) { in setDozing() argument 742 mDozing = dozing; in setDozing() 747 if (dozing) { in setDozing()
|
D | NotificationShadeWindowController.java | 569 public void setDozing(boolean dozing) { in setDozing() argument 570 mCurrentState.mDozing = dozing; in setDozing()
|
D | NotificationPanelViewController.java | 2863 public void setDozing(boolean dozing, boolean animate, PointF wakeUpTouchLocation) { in setDozing() argument 2864 if (dozing == mDozing) return; in setDozing() 2865 mView.setDozing(dozing); in setDozing() 2866 mDozing = dozing; in setDozing() 2870 if (dozing) { in setDozing() 2878 final float dozeAmount = dozing ? 1 : 0; in setDozing()
|
/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 | 120 public void traceDozing(boolean dozing) { in traceDozing() argument 121 mLogger.logDozing(dozing); in traceDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | AmbientState.java | 188 public void setDozing(boolean dozing) { in setDozing() argument 189 mDozing = dozing; in setDozing()
|
D | NotificationStackScrollLayout.java | 4932 public void setDozing(boolean dozing, boolean animate, 4934 if (mAmbientState.isDozing() == dozing) { 4937 mAmbientState.setDozing(dozing);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationController.java | 627 public void setDozing(boolean dozing) { in setDozing() argument 628 if (mDozing == dozing) { in setDozing() 631 mDozing = dozing; in setDozing()
|
D | StatusBarIconView.java | 864 public void setDozing(boolean dozing, boolean fade, long delay) { in setDozing() argument 870 }, dozing, fade, delay, this); in setDozing()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | AutomaticBrightnessController.java | 321 boolean dozing = (displayPolicy == DisplayPowerRequest.POLICY_DOZE); in configure() 334 if (userInitiatedChange && enable && !dozing) { in configure() 337 changed |= setLightSensorEnabled(enable && !dozing); in configure()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLogger.java | 292 private void setDozing(boolean dozing) { in setDozing() argument 294 mDozing = dozing; in setDozing()
|
/frameworks/base/core/proto/android/server/ |
D | powermanagerservice.proto | 119 // the dreaming or dozing state. Indicates whether a new dream should begin. 304 // The screen state to use while dozing. 306 // The screen brightness to use while dozing.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 2247 public void setDozing(boolean dozing) { in setDozing() argument 2248 if (dozing == mDozing) { in setDozing() 2251 mDozing = dozing; in setDozing()
|
/frameworks/base/services/core/java/com/android/server/ |
D | AlarmManagerService.java | 3473 final boolean dozing = mPendingIdleUntil != null; in getWhileIdleMinIntervalLocked() 3476 if (!dozing && !ebs) { in getWhileIdleMinIntervalLocked() 3479 if (dozing) { in getWhileIdleMinIntervalLocked()
|