Searched refs:tmpOut (Results 1 – 8 of 8) sorted by relevance
/aosp12/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/ |
H A D | CropAndSetWallpaperTask.java | 80 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in cropBitmap() local 81 if (crop.compress(CompressFormat.JPEG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in cropBitmap() 84 byte[] outByteArray = tmpOut.toByteArray(); in cropBitmap()
|
/aosp12/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
H A D | ImageUtils.java | 59 Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap); in blur() local 62 theIntrinsic.forEach(tmpOut); in blur() 63 tmpOut.copyTo(outputBitmap); in blur()
|
/aosp12/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/ |
H A D | DefaultWallpaperInfo.java | 92 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in setDefaultOnLock() local 93 if (defaultWallpaper.compress(Bitmap.CompressFormat.PNG, 100, tmpOut)) { in setDefaultOnLock() 94 byte[] outByteArray = tmpOut.toByteArray(); in setDefaultOnLock()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
H A D | CropActivity.java | 557 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in doInBackground() local 558 if (crop.compress(cf, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in doInBackground() 569 mOutStream.write(tmpOut.toByteArray()); in doInBackground() 587 mWPManager.setStream(new ByteArrayInputStream(tmpOut in doInBackground()
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
H A D | ImagePreviewFragment.java | 388 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in recalculateColors() 390 if (cropped.compress(Bitmap.CompressFormat.PNG, 100, tmpOut)) { in recalculateColors() 391 byte[] outByteArray = tmpOut.toByteArray(); in recalculateColors()
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
H A D | DefaultWallpaperPersister.java | 491 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in setBitmapToWallpaperManagerCompat() local 492 if (wallpaperBitmap.compress(CompressFormat.PNG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in setBitmapToWallpaperManagerCompat() 494 byte[] outByteArray = tmpOut.toByteArray(); in setBitmapToWallpaperManagerCompat()
|
/aosp12/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
H A D | WallpaperCropActivity.java | 774 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); local 775 if (crop.compress(cf, DEFAULT_COMPRESS_QUALITY, tmpOut)) { 779 byte[] outByteArray = tmpOut.toByteArray();
|
/aosp12/frameworks/base/core/java/android/provider/ |
H A D | CallLog.java | 224 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in storeCallComposerPicture() 243 tmpOut.write(buffer, 0, bytesRead); in storeCallComposerPicture() 245 byte[] picData = tmpOut.toByteArray(); in storeCallComposerPicture()
|