Home | History | Annotate | Download | only in wallpaperbackup

Lines Matching defs:WALLPAPER

59     // Target filenames within the system's wallpaper directory
60 static final String WALLPAPER = "wallpaper_orig";
65 static final String IMAGE_STAGE = "wallpaper-stage";
66 static final String LOCK_IMAGE_STAGE = "wallpaper-lock-stage";
67 static final String INFO_STAGE = "wallpaper-info-stage";
76 private File mWallpaperInfo; // wallpaper metadata file
77 private File mWallpaperFile; // primary wallpaper image file
78 private File mLockWallpaperFile; // lock wallpaper image file
94 mWallpaperFile = new File(wallpaperDir, WALLPAPER);
116 // storable wallpaper imagery still produces a non-empty backup data
136 // There might be a latent lock wallpaper file present but unused: don't
152 if (DEBUG) Slog.v(TAG, "New wallpaper configuration; copying");
155 if (DEBUG) Slog.v(TAG, "Storing wallpaper metadata");
160 if (DEBUG) Slog.v(TAG, "New system wallpaper; copying");
163 if (DEBUG) Slog.v(TAG, "Storing system wallpaper image");
171 if (DEBUG) Slog.v(TAG, "New lock wallpaper; copying");
174 if (DEBUG) Slog.v(TAG, "Storing lock wallpaper image");
179 Slog.e(TAG, "Unable to back up wallpaper", e);
203 // then post-process in onRestoreFinished() to apply the new wallpaper.
214 // If we restored separate lock imagery, the system wallpaper should be
216 // sure to apply the restored system wallpaper as both.
222 // wallpaper image present.
226 // And reset to the wallpaper service we should be using
230 Slog.i(TAG, "Using wallpaper service " + wpService);
234 // We have a live wallpaper and no static lock image,
235 // allow live wallpaper to show "through" on lock screen.
240 Slog.v(TAG, "Can't use wallpaper service " + wpService);
244 Slog.e(TAG, "Unable to restore wallpaper: " + e.getMessage());
265 // relies on a priori knowledge of the wallpaper info file schema.
268 Slog.i(TAG, "Got restored wallpaper; applying which=" + which);