HomeSort by relevance Sort by last modified time
    Searched defs:dream (Results 1 - 3 of 3) 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...]
  /frameworks/base/services/java/com/android/server/dreams/
DreamManagerService.java 97 pw.println("DREAM MANAGER (dumpsys dreams)");
169 public void dream() { method in class:DreamManagerService
176 // Because napping could cause the screen to turn off immediately if the dream
187 public void testDream(ComponentName dream) {
190 if (dream == null) {
191 throw new IllegalArgumentException("dream must not be null");
198 Slog.w(TAG, "Aborted attempt to start a test dream while a different "
206 startDreamLocked(dream, true /*isTest*/, callingUserId);
232 // Requires no permission, called by Dream from an arbitrary process.
240 Slog.d(TAG, "Dream finished: " + token)
265 ComponentName dream = chooseDreamForUser(userId); local
    [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...]

Completed in 3302 milliseconds