/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/ |
D | FakeStatusBarStateController.kt | 13 @JvmField var dozing = false variable in com.android.systemui.statusbar.FakeStatusBarStateController 80 override fun isDozing() = dozing in isDozing() 82 override fun setIsDozing(dozing: Boolean): Boolean { in isDozing() 83 dozing != this.dozing || return false in isDozing() 84 this.dozing = dozing in isDozing() 85 callbacks.forEach { it.onDozingChanged(dozing) } in isDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | NPVCDownEventState.kt | 35 private var dozing: Boolean = false, variable in com.android.systemui.shade.NPVCDownEventState 53 dozing.toString(), in <lambda>() 82 dozing: Boolean, in insert() 95 this.dozing = dozing in insert()
|
D | NotificationShadeWindowState.kt | 58 @JvmField var dozing: Boolean = false, variable in com.android.systemui.shade.NotificationShadeWindowState 101 dozing.toString(), in <lambda>() 143 dozing: Boolean, in insert() 176 this.dozing = dozing in insert()
|
D | NotificationPanelView.java | 93 public void setDozing(boolean dozing) { in setDozing() argument 94 mDozing = dozing; in setDozing()
|
D | NotificationShadeWindowControllerImpl.java | 358 || (state.dozing && mDozeParameters.getAlwaysOn()); in applyKeyguardFlags() 370 if (state.dozing) { in applyKeyguardFlags() 399 if (state.dozing || bypassOnKeyguard) { in applyKeyguardFlags() 426 if (state.bouncerShowing || state.isKeyguardShowingAndNotOccluded() || state.dozing) { in adjustScreenOrientation() 626 state.dozing, in logState() 645 mCurrentState.dozing, in notifyStateChangedCallbacks() 863 public void setDozing(boolean dozing) { in setDozing() argument 864 mCurrentState.dozing = dozing; in setDozing()
|
D | ShadeSurfaceImpl.kt | 56 override fun setDozing(dozing: Boolean, animate: Boolean) { in setDozing()
|
D | ShadeSurface.kt | 73 fun setDozing(dozing: Boolean, animate: Boolean)
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationWakeUpCoordinator.kt | 329 private fun setHardDozeAmountOverride(dozing: Boolean, source: String) { in setHardDozeAmountOverride() 330 logger.logSetDozeAmountOverride(dozing = dozing, source = source) in setHardDozeAmountOverride() 332 hardDozeAmountOverride = if (dozing) 1f else 0f in setHardDozeAmountOverride() 440 dozing = false, in onStateChanged() 490 setHardDozeAmountOverride(dozing = true, source = "Override: bypass (keyguard)") in overrideDozeAmountIfBypass() 492 setHardDozeAmountOverride(dozing = false, source = "Override: bypass (shade)") in overrideDozeAmountIfBypass() 502 setHardDozeAmountOverride(dozing = true, source = "Override: communal (keyguard)") in overrideDozeAmountIfCommunalShowing() 504 setHardDozeAmountOverride(dozing = false, source = "Override: communal (shade)") in overrideDozeAmountIfCommunalShowing() 521 val dozing = statusBarStateController.isDozing in maybeClearHardDozeAmountOverrideHidingNotifs() constant 532 val willRemove = (!onKeyguard || !dozing) && !bypass && !animating && !idleOnCommunal in maybeClearHardDozeAmountOverrideHidingNotifs() [all …]
|
D | NotificationDozeHelper.java | 64 public void setDozing(Consumer<Float> listener, boolean dozing, in setDozing() argument 67 startIntensityAnimation(a -> listener.accept((Float) a.getAnimatedValue()), dozing, in setDozing() 89 listener.accept(dozing ? 1f : 0f); in setDozing()
|
D | NotificationWakeUpCoordinatorLogger.kt | 81 fun logSetDozeAmountOverride(dozing: Boolean, source: String) { in logSetDozeAmountOverride() 86 bool1 = dozing in logSetDozeAmountOverride() 96 dozing: Boolean, in logMaybeClearHardDozeAmountOverrideHidingNotifs() 106 "willRemove=$willRemove onKeyguard=$onKeyguard dozing=$dozing" + in logMaybeClearHardDozeAmountOverrideHidingNotifs()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
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() 326 public void tracePulseEvent(String pulseEvent, boolean dozing, int pulseReason) { in tracePulseEvent() argument 327 mLogger.logPulseEvent(pulseEvent, dozing, DozeLog.reasonToString(pulseReason)); in tracePulseEvent()
|
D | DozeLogger.kt | 257 fun logPulseEvent(pulseEvent: String, dozing: Boolean, pulseReason: String) { in logPulseEvent() 260 bool1 = dozing in logPulseEvent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | DozeScrimController.java | 99 public void setDozing(boolean dozing) { in setDozing() argument 100 if (mDozing == dozing) return; in setDozing() 101 mDozing = dozing; in setDozing()
|
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()
|
D | DozeServiceHost.java | 243 boolean dozing; in updateDozing() 245 dozing = mDozingRequested && mDozeInteractor.canDozeFromCurrentScene(); in updateDozing() 247 dozing = mDozingRequested in updateDozing() 255 dozing = false; in updateDozing() 259 callback.onDozingChanged(dozing); in updateDozing() 261 mDozeInteractor.setIsDozing(dozing); in updateDozing() 262 mStatusBarStateController.setIsDozing(dozing); in updateDozing()
|
D | NotificationIconContainer.java | 692 public void setDozing(boolean dozing, boolean animate, long delay) { in setDozing() argument 694 setDozing(dozing, animate, delay, /* endRunnable= */ null); in setDozing() 697 private void setDozing(boolean dozing, boolean animate, long delay, in setDozing() argument 700 mDozing = dozing; in setDozing() 718 ((StatusBarIconView) view).setDozing(dozing, animate, delay, onChildCompleted); in setDozing()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/ |
D | KeyguardLogger.kt | 103 dozing: Boolean, in logUpdateDeviceEntryIndication() 111 bool3 = dozing in logUpdateDeviceEntryIndication()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/ |
D | OccludingAppDeviceEntryInteractor.kt | 78 ) { occluded, showing, primaryBouncerShowing, alternateBouncerVisible, dozing -> in <lambda>() method 83 !dozing in <lambda>()
|
/frameworks/proto_logging/stats/enums/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/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/view/ |
D | NotificationScrollView.kt | 76 fun setDozing(dozing: Boolean)
|
/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
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/ |
D | AlternateBouncerInteractor.kt | 131 dozing -> in <lambda>() method 135 !dozing in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationShadeWindowController.java | 144 default void setDozing(boolean dozing) {} in setDozing() argument
|
/frameworks/base/packages/SystemUI/docs/device-entry/ |
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…
|
/frameworks/base/services/core/java/com/android/server/content/ |
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.
|