/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | NPVCDownEventState.kt | 35 private var dozing: Boolean = false, 53 dozing.toString(), 82 dozing: Boolean, 95 this.dozing = dozing
|
H A D | NotificationShadeWindowState.kt | 56 @JvmField var dozing: Boolean = false, 92 dozing.toString(), 131 dozing: Boolean, 161 this.dozing = dozing
|
H A D | NotificationPanelView.java | 80 public void setDozing(boolean dozing) { in setDozing() argument 81 mDozing = dozing; in setDozing()
|
H A D | NotificationShadeWindowControllerImpl.java | 310 || (state.dozing && mDozeParameters.getAlwaysOn()); in applyKeyguardFlags() 322 if (state.dozing) { in applyKeyguardFlags() 346 if (state.dozing || bypassOnKeyguard) { in applyKeyguardFlags() 367 if (state.bouncerShowing || state.isKeyguardShowingAndNotOccluded() || state.dozing) { in adjustScreenOrientation() 558 state.dozing, in logState() 576 mCurrentState.dozing, in notifyStateChangedCallbacks() 781 public void setDozing(boolean dozing) { in setDozing() argument 782 mCurrentState.dozing = dozing; in setDozing()
|
H A D | ShadeSurface.kt | 91 fun setDozing(dozing: Boolean, animate: Boolean)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationWakeUpCoordinator.kt | 300 private fun setHardDozeAmountOverride(dozing: Boolean, source: String) { 301 logger.logSetDozeAmountOverride(dozing = dozing, source = source) 302 hardDozeAmountOverride = if (dozing) 1f else 0f 407 dozing = false, 452 setHardDozeAmountOverride(dozing = true, source = "Override: bypass (keyguard)") 454 setHardDozeAmountOverride(dozing = false, source = "Override: bypass (shade)") 471 val dozing = statusBarStateController.isDozing regex 480 val willRemove = (!onKeyguard || !dozing) && !bypass && !animating 484 dozing = dozing, 504 setHardDozeAmountOverride(dozing = true, source = "Override: animating screen off")
|
H A D | NotificationWakeUpCoordinatorLogger.kt | 81 fun logSetDozeAmountOverride(dozing: Boolean, source: String) { 86 bool1 = dozing 96 dozing: Boolean, 105 "willRemove=$willRemove onKeyguard=$onKeyguard dozing=$dozing" +
|
H A 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()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
H A D | DozeLog.java | 140 public void traceDozing(boolean dozing) { in traceDozing() argument 141 mLogger.logDozing(dozing); in traceDozing() 149 public void traceDozingChanged(boolean dozing) { in traceDozingChanged() argument 150 mLogger.logDozingChanged(dozing); in traceDozingChanged() 317 public void tracePulseEvent(String pulseEvent, boolean dozing, int pulseReason) { in tracePulseEvent() argument 318 mLogger.logPulseEvent(pulseEvent, dozing, DozeLog.reasonToString(pulseReason)); in tracePulseEvent()
|
H A D | DozeLogger.kt | 248 fun logPulseEvent(pulseEvent: String, dozing: Boolean, pulseReason: String) { 251 bool1 = dozing
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | DozeScrimController.java | 99 public void setDozing(boolean dozing) { in setDozing() argument 100 if (mDozing == dozing) return; in setDozing() 101 mDozing = dozing; in setDozing()
|
H A D | LockIcon.java | 135 void update(int newState, boolean dozing, boolean keyguardJustShown) { in update() argument 138 mDozing = dozing; in update() 201 private static int getAnimationIndexForTransition(int oldState, int newState, boolean dozing, in getAnimationIndexForTransition() argument 205 if (dozing) { in getAnimationIndexForTransition()
|
H A D | DozeServiceHost.java | 218 boolean dozing = in updateDozing() 224 dozing = false; in updateDozing() 228 callback.onDozingChanged(dozing); in updateDozing() 230 mDozeInteractor.setIsDozing(dozing); in updateDozing() 231 mStatusBarStateController.setIsDozing(dozing); in updateDozing()
|
H A D | StatusBarKeyguardViewManager.java | 848 private void setDozing(boolean dozing) { in setDozing() argument 849 if (mDozing != dozing) { in setDozing() 850 mDozing = dozing; in setDozing() 851 if (dozing || needsFullscreenBouncer() in setDozing() 853 reset(dozing /* hideBouncerWhenShowing */); in setDozing() 857 if (!dozing) { in setDozing()
|
H A D | NotificationIconContainer.java | 626 public void setDozing(boolean dozing, boolean fade, long delay) { in setDozing() argument 627 mDozing = dozing; in setDozing() 632 ((StatusBarIconView) view).setDozing(dozing, fade, delay); in setDozing()
|
H A D | KeyguardStatusBarViewController.java | 440 public void setDozing(boolean dozing) { in setDozing() argument 441 mDozing = dozing; in setDozing()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/ |
H A D | KeyguardLogger.kt | 86 dozing: Boolean, 94 bool3 = dozing
|
/aosp14/frameworks/base/core/proto/android/os/ |
H A 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
|
/aosp14/frameworks/base/packages/SystemUI/docs/device-entry/ |
H A D | doze.md | 3 …, pulsing, or wake-gestures are enabled, then the device will enter the `dozing` state after a use… 11 …dozing begins, [DozeUI][17] informs SystemUI's [DozeServiceHost][18] that dozing has begun - which…
|
H A D | keyguard.md | 33 ### Pulsing (Incoming notifications while dozing)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationShadeWindowController.java | 141 default void setDozing(boolean dozing) {} in setDozing() argument
|
/aosp14/frameworks/base/services/core/java/com/android/server/content/ |
H A D | SyncManager.md | 72 Note if the device is dozing or in battery saver, promoting to the "ACTIVE" bucket will still 84 (However, note that when the device is dozing, sync jobs will not run anyway.) 108 - When the device is dozing, no sync operations will be executed.
|
/aosp14/frameworks/base/packages/SystemUI/plugin/bcsmartspace/src/com/android/systemui/plugins/ |
H A D | BcSmartspaceDataPlugin.java | 133 default void setDozing(boolean dozing) {} in setDozing() argument
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | AmbientState.java | 342 public void setDozing(boolean dozing) { in setDozing() argument 343 mDozing = dozing; in setDozing()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationLogger.java | 277 private void setDozing(boolean dozing) { in setDozing() argument 279 mDozing = dozing; in setDozing()
|