Home
last modified time | relevance | path

Searched refs:tmpOut (Results 1 – 4 of 4) sorted by relevance

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DWallpaperColorsExtractor.kt49 val tmpOut = ByteArrayOutputStream() in extractWallpaperColors() constant
52 if (cropped.compress(Bitmap.CompressFormat.PNG, 100, tmpOut)) { in extractWallpaperColors()
53 val outByteArray = tmpOut.toByteArray() in extractWallpaperColors()
/packages/modules/Bluetooth/android/pandora/server/src/
DRfcomm.kt86 val tmpOut = clientSocket.outputStream!! in connectToServer() constant
87 connectionMap[connectedClientSocket] = Connection(clientSocket, tmpIn, tmpOut) in connectToServer()
146 val tmpOut = acceptedSocket.outputStream!! in acceptConnection() constant
147 connectionMap[acceptedSocketCookie] = Connection(acceptedSocket, tmpIn, tmpOut) in acceptConnection()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
DCropActivity.java557 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()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DDefaultWallpaperPersister.java370 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in setBitmapToWallpaperManager() local
371 if (wallpaperBitmap.compress(CompressFormat.PNG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in setBitmapToWallpaperManager()
373 byte[] outByteArray = tmpOut.toByteArray(); in setBitmapToWallpaperManager()