Home
last modified time | relevance | path

Searched refs:dozing (Results 1 – 24 of 24) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationDozeHelper.java82 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/
DNotificationPanelView.java82 public void setDozing(boolean dozing) { in setDozing() argument
83 mDozing = dozing; in setDozing()
DLockIcon.java136 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()
DDozeScrimController.java103 public void setDozing(boolean dozing) { in setDozing() argument
104 if (mDozing == dozing) return; in setDozing()
105 mDozing = dozing; in setDozing()
DStatusBarKeyguardViewManager.java485 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()
DDozeServiceHost.java206 dozing = in updateDozing()
214 dozing = false; in updateDozing()
217 mStatusBarStateController.setIsDozing(dozing); in updateDozing()
DNotificationIconContainer.java581 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()
DKeyguardBottomAreaView.java741 public void setDozing(boolean dozing, boolean animate) { in setDozing() argument
742 mDozing = dozing; in setDozing()
747 if (dozing) { in setDozing()
DNotificationShadeWindowController.java569 public void setDozing(boolean dozing) { in setDozing() argument
570 mCurrentState.mDozing = dozing; in setDozing()
DNotificationPanelViewController.java2863 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/
Denums.proto31 // 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/
Dpowermanager.proto55 // display controller. The device typically passes through the dozing
67 // The device is dozing. It is almost asleep but is allowing a special
Denums.proto161 // manager is in the dozing state.
166 // is dozing. It currently has no effect unless the power manager is in
167 // the dozing state.
Dbatterystats.proto89 // 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/
DDozeLog.java120 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/
DAmbientState.java188 public void setDozing(boolean dozing) { in setDozing() argument
189 mDozing = dozing; in setDozing()
DNotificationStackScrollLayout.java4932 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/
DKeyguardIndicationController.java627 public void setDozing(boolean dozing) { in setDozing() argument
628 if (mDozing == dozing) { in setDozing()
631 mDozing = dozing; in setDozing()
DStatusBarIconView.java864 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/
DAutomaticBrightnessController.java321 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/
DNotificationLogger.java292 private void setDozing(boolean dozing) { in setDozing() argument
294 mDozing = dozing; in setDozing()
/frameworks/base/core/proto/android/server/
Dpowermanagerservice.proto119 // 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/
DKeyguardViewMediator.java2247 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/
DAlarmManagerService.java3473 final boolean dozing = mPendingIdleUntil != null; in getWhileIdleMinIntervalLocked()
3476 if (!dozing && !ebs) { in getWhileIdleMinIntervalLocked()
3479 if (dozing) { in getWhileIdleMinIntervalLocked()