Searched defs:dozing (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeReceiver.java23 void setDozing(boolean dozing); argument
H A DDozeLog.java117 public static void traceDozing(Context context, boolean dozing) { argument
121 log("dozing " + dozing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java87 public void setDozing(boolean dozing) { argument
88 if (mDozing == dozing) return;
89 mDozing = dozing;
95 /** When dozing, fade screen contents in and out using the front scrim. */
H A DStatusBarWindowManager.java146 || (state.dozing && mDozeParameters.getAlwaysOn());
155 if (state.isKeyguardShowingAndNotOccluded() || state.dozing) {
290 if (state.dozing) {
406 public void setDozing(boolean dozing) { argument
407 mCurrentState.dozing = dozing;
459 boolean dozing; field in class:StatusBarWindowManager.State
H A DKeyguardBottomAreaView.java823 public void setDozing(boolean dozing, boolean animate) { argument
824 mDozing = dozing;
829 if (dozing) {
H A DStatusBarKeyguardViewManager.java116 // Dismiss action to be launched when we stop dozing or the keyguard is gone.
243 // If we're dozing, this needs to be delayed until after we wake up - unless we're
244 // wake-and-unlocking, because there dozing will last until the end of the transition.
322 public void setDozing(boolean dozing) { argument
323 if (mDozing != dozing) {
324 mDozing = dozing;
325 if (dozing || mBouncer.needsFullscreenBouncer() || mOccluded) {
326 reset(dozing /* hideBouncerWhenShowing */);
330 if (!dozing) {
380 // setDozing(false) will call reset once we stop dozing
[all...]
H A DNotificationPanelView.java2702 public void setDozing(boolean dozing, boolean animate) { argument
2703 if (dozing == mDozing) return;
2704 mDozing = dozing;
2711 final float darkAmount = dozing ? 1 : 0;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
H A DDozeHostFake.java32 boolean dozing; field in class:DozeHostFake
49 dozing = true;
59 dozing = false;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java299 // When dozing we ignore any text color and use white instead, because
467 public void setDozing(boolean dozing) { argument
468 if (mDozing == dozing) {
471 mDozing = dozing;

Completed in 122 milliseconds