Searched refs:dozing (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java62 public void setDozing(boolean dozing, boolean animate) { argument
63 if (mDozing == dozing) return;
64 mDozing = dozing;
84 /** When dozing, fade screen contents in and out using the front scrim. */
H A DScrimController.java167 public void setDozing(boolean dozing) { argument
168 if (mDozing != dozing) {
169 mDozing = dozing;
268 // Eat touch events (unless dozing).
H A DNotificationPanelView.java2167 public void setDozing(boolean dozing, boolean animate) { argument
2168 if (dozing == mDozing) return;
2169 mDozing = dozing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java108 public static void traceDozing(Context context, boolean dozing) { argument
112 log("dozing " + dozing);
/frameworks/base/services/core/java/com/android/server/display/
H A DAutomaticBrightnessController.java185 // Are we going to adjust brightness while dozing.
233 public void configure(boolean enable, float adjustment, boolean dozing, argument
235 // While dozing, the application processor may be suspended which will prevent us from
238 // and hold onto the last computed screen auto brightness. We save the dozing flag for
240 mDozing = dozing;
241 boolean changed = setLightSensorEnabled(enable && !dozing);
246 if (enable && !dozing && userInitiatedChange) {

Completed in 120 milliseconds