Searched refs:wallpaperBitmap (Results 1 – 4 of 4) sorted by relevance
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultWallpaperPersister.java | 335 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument 338 return setWallpaperInRotationStatic(wallpaperBitmap, attributions, actionUrl, in setWallpaperInRotation() 343 public int setWallpaperBitmapInNextRotation(Bitmap wallpaperBitmap) { in setWallpaperBitmapInNextRotation() argument 344 return cropAndSetWallpaperBitmapInRotationStatic(wallpaperBitmap); in setWallpaperBitmapInNextRotation() 359 private boolean setWallpaperInRotationStatic(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotationStatic() argument 361 final int wallpaperId = cropAndSetWallpaperBitmapInRotationStatic(wallpaperBitmap); in setWallpaperInRotationStatic() 425 private int cropAndSetWallpaperBitmapInRotationStatic(Bitmap wallpaperBitmap) { in cropAndSetWallpaperBitmapInRotationStatic() argument 427 Point wallpaperSize = new Point(wallpaperBitmap.getWidth(), wallpaperBitmap.getHeight()); in cropAndSetWallpaperBitmapInRotationStatic() 459 wallpaperBitmap = Bitmap.createBitmap(wallpaperBitmap, in cropAndSetWallpaperBitmapInRotationStatic() 473 return setBitmapToWallpaperManagerCompat(wallpaperBitmap, false /* allowBackup */, in cropAndSetWallpaperBitmapInRotationStatic() [all …]
|
D | DefaultWallpaperRefresher.java | 217 Bitmap wallpaperBitmap = wallpaperDrawable.getBitmap(); in getCurrentHomeWallpaperHashCode() local 218 mCurrentHomeWallpaperHashCode = BitmapUtils.generateHashCode(wallpaperBitmap); in getCurrentHomeWallpaperHashCode() 230 Bitmap wallpaperBitmap = getLockWallpaperBitmap(); in getCurrentLockWallpaperHashCode() local 231 mCurrentLockWallpaperHashCode = BitmapUtils.generateHashCode(wallpaperBitmap); in getCurrentLockWallpaperHashCode()
|
D | WallpaperPersister.java | 85 boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument 98 int setWallpaperBitmapInNextRotation(Bitmap wallpaperBitmap); in setWallpaperBitmapInNextRotation() argument
|
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
D | TestWallpaperPersister.java | 124 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument 130 mCurrentHomeWallpaper = wallpaperBitmap; in setWallpaperInRotation() 131 mCurrentLockWallpaper = wallpaperBitmap; in setWallpaperInRotation() 138 public int setWallpaperBitmapInNextRotation(Bitmap wallpaperBitmap) { in setWallpaperBitmapInNextRotation() argument 139 mCurrentHomeWallpaper = wallpaperBitmap; in setWallpaperBitmapInNextRotation() 140 mCurrentLockWallpaper = wallpaperBitmap; in setWallpaperBitmapInNextRotation()
|