/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultWallpaperRefresher.java | 70 private final WallpaperManager mWallpaperManager; field in DefaultWallpaperRefresher 94 mWallpaperManager = (WallpaperManager) context.getSystemService(Context.WALLPAPER_SERVICE); in DefaultWallpaperRefresher() 110 private final WallpaperManager mWallpaperManager; field in DefaultWallpaperRefresher.GetWallpaperMetadataAsyncTask 119 mWallpaperManager = WallpaperManager.getInstance(mAppContext); in GetWallpaperMetadataAsyncTask() 126 boolean isHomeScreenStatic = mWallpaperManager.getWallpaperInfo(FLAG_SYSTEM) == null; in doInBackground() 136 if (mWallpaperManager.getWallpaperInfo() == null) { in doInBackground() 144 android.app.WallpaperInfo info = mWallpaperManager.getWallpaperInfo(); in doInBackground() 156 boolean isLockScreenStatic = mWallpaperManager.getWallpaperInfo(FLAG_LOCK) == null; in doInBackground() 171 android.app.WallpaperInfo info = mWallpaperManager.getWallpaperInfo(FLAG_LOCK); in doInBackground() 199 android.app.WallpaperInfo wallpaperComponent = mWallpaperManager.getWallpaperInfo(); in setFallbackHomeScreenWallpaperMetadata() [all …]
|
D | DefaultWallpaperPersister.java | 74 private final WallpaperManager mWallpaperManager; field in DefaultWallpaperPersister 98 mWallpaperManager = wallpaperManager; in DefaultWallpaperPersister() 374 return mWallpaperManager.setStream( in setBitmapToWallpaperManager() 386 return mWallpaperManager.setBitmap( in setBitmapToWallpaperManager() 402 return mWallpaperManager.setStream(inputStream, cropHint, allowBackup, in setStreamToWallpaperManager() 413 return mWallpaperManager.setStreamWithCrops(inputStream, cropHints, allowBackup, in setStreamWithCropsToWallpaperManager() 427 android.app.WallpaperInfo currentWallpaperComponent = mWallpaperManager.getWallpaperInfo(); in onLiveWallpaperSet() 449 return mWallpaperManager.getWallpaperId(WallpaperManager.FLAG_LOCK) >= 0; in isSeparateLockScreenWallpaperSet() 593 mWallpaperManager.forgetLoadedWallpaper(); in doInBackground() 594 mBitmap = ((BitmapDrawable) mWallpaperManager in doInBackground() [all …]
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/ |
D | CurrentWallpaperAsset.java | 56 private final WallpaperManager mWallpaperManager; field in CurrentWallpaperAsset 64 mWallpaperManager = WallpaperManager.getInstance(context.getApplicationContext()); in CurrentWallpaperAsset() 66 mWallpaperId = mWallpaperManager.getWallpaperId(mWallpaperManagerFlag); in CurrentWallpaperAsset() 152 return new CurrentWallpaperKey(mWallpaperManager, mWallpaperManagerFlag); in getKey() 156 return mWallpaperManager.getWallpaperFile(mWallpaperManagerFlag, mCropped); in getWallpaperPfd() 164 private final WallpaperManager mWallpaperManager; field in CurrentWallpaperAsset.CurrentWallpaperKey 170 mWallpaperManager = wallpaperManager; in CurrentWallpaperKey() 205 + ",id=" + mWallpaperManager.getWallpaperId(mWallpaperFlag) in getCacheKey()
|
D | WallpaperModel.java | 46 private WallpaperManager mWallpaperManager; field in WallpaperModel 50 mWallpaperManager = WallpaperManager.getInstance(context); in WallpaperModel() 63 return mWallpaperManager.getBuiltInDrawable( in getDrawable()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
D | BaseDepthController.java | 72 protected final WallpaperManager mWallpaperManager; field in BaseDepthController 105 mWallpaperManager = activity.getSystemService(WallpaperManager.class); in BaseDepthController() 136 mWallpaperManager.setWallpaperZoomOut(windowToken, depth); in applyDepthAndBlur() 141 mWallpaperManager.setWallpaperZoomOut(windowToken, depth / 3); in applyDepthAndBlur()
|
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/ |
D | LiveWallpaperPreview.java | 90 private WallpaperManager mWallpaperManager; field in LiveWallpaperPreview 156 mWallpaperManager = WallpaperManager.getInstance(this); in initUI() 443 if (mWallpaperManager.getWallpaperInfo() != null in setLiveWallpaper() 444 && mWallpaperManager.getWallpaperId(WallpaperManager.FLAG_LOCK) < 0) { in setLiveWallpaper() 471 mWallpaperManager.clear(WallpaperManager.FLAG_LOCK); in setLiveWallpaper() 485 mWallpaperManager.setWallpaperComponent(mWallpaperIntent.getComponent()); in setLiveWallpaper() 486 mWallpaperManager.setWallpaperOffsetSteps(0.5f /* xStep */, 0.0f /* yStep */); in setLiveWallpaper() 487 mWallpaperManager.setWallpaperOffsets(windowToken, 0.5f /* xOffset */, 0.0f /* yOffset */); in setLiveWallpaper()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | ShortcutAndWidgetContainer.java | 56 private final WallpaperManager mWallpaperManager; field in ShortcutAndWidgetContainer 74 mWallpaperManager = WallpaperManager.getInstance(context); in ShortcutAndWidgetContainer() 263 mWallpaperManager.sendWallpaperCommand(getWindowToken(), in layoutChild()
|
D | Workspace.java | 176 final WallpaperManager mWallpaperManager; field in Workspace 320 mWallpaperManager = WallpaperManager.getInstance(context); in Workspace() 1367 if (size.x != mWallpaperManager.getDesiredMinimumWidth() in setWallpaperDimension() 1368 || size.y != mWallpaperManager.getDesiredMinimumHeight()) { in setWallpaperDimension() 1369 mWallpaperManager.suggestDesiredDimensions(size.x, size.y); in setWallpaperDimension() 1539 mWallpaperManager.sendWallpaperCommand(getWindowToken(), in onWallpaperTap()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/ |
D | IndividualPickerFragment.java | 166 private WallpaperManager mWallpaperManager; field in IndividualPickerFragment 185 mWallpaperManager = WallpaperManager.getInstance(appContext); in onCreate() 609 android.app.WallpaperInfo wallpaperInfo = mWallpaperManager.getWallpaperInfo(); in getAppliedWallpaperIds() 619 mWallpaperManager.getWallpaperId(WallpaperManager.FLAG_LOCK) >= 0; in getAppliedWallpaperIds()
|