HomeSort by relevance Sort by last modified time
    Searched defs:dream (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/service/dreams/
Sandman.java 39 // The component name of a special dock app that merely launches a dream.
41 // activity transition. We just want to start the dream.
52 * False if we should dream instead, if appropriate.
60 * Starts a dream manually.
67 * Starts a dream when docked if the system has been configured to do so,
86 Slog.i(TAG, "Activating dream while docked.");
91 // and the UI mode manager starting a dream. We want the system to already
92 // be awake by the time this happens. Otherwise the dream may not start.
97 Slog.i(TAG, "Activating dream by user request.");
100 // Dream
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DreamBackend.java 43 * Manages communication with the dream manager service.
110 void setActiveDream(ComponentName dream) {
113 ComponentName[] dreams = dream == null ? null : new ComponentName[] { dream };
116 Log.w(TAG, "Failed to set active dream to " + dream, e);
135 Log.w(TAG, "Failed to get active dream", e);
144 mDreamManager.dream();
146 Log.w(TAG, "Failed to dream", e);
156 Log.w(TAG, "Failed to get default dream", e)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DreamBackend.java 124 Log.w(TAG, "Failed to get default dream", e);
180 public void setActiveDream(ComponentName dream) {
181 logd("setActiveDream(%s)", dream);
185 ComponentName[] dreams = { dream };
186 mDreamManager.setDreamComponents(dream == null ? null : dreams);
188 Log.w(TAG, "Failed to set active dream to " + dream, e);
199 Log.w(TAG, "Failed to get active dream", e);
227 mDreamManager.dream();
229 Log.w(TAG, "Failed to dream", e)
    [all...]
  /frameworks/base/services/core/java/com/android/server/dreams/
DreamManagerService.java 123 pw.println("DREAM MANAGER (dumpsys dreams)");
156 // Because napping could cause the screen to turn off immediately if the dream
174 Slog.d(TAG, "Dream finished: " + token + ", immediate=" + immediate);
177 // Note that a dream finishing and self-terminating is not
178 // itself considered user activity. If the dream is ending because
181 // If the dream is ending on its own for other reasons and no wake
191 private void testDreamInternal(ComponentName dream, int userId) {
193 startDreamLocked(dream, true /*isTest*/, false /*canDoze*/, userId);
199 final ComponentName dream = chooseDreamForUser(doze, userId); local
200 if (dream != null)
533 public void dream() { method in class:DreamManagerService.BinderService
    [all...]

Completed in 587 milliseconds