Home
last modified time | relevance | path

Searched refs:imageFile (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java190 File imageFile = new File(imageFilePath); in tearDown() local
191 if (imageFile.exists()) { in tearDown()
192 imageFile.delete(); in tearDown()
320 String verboseTag = imageFile.getName(); in testExifInterfaceCommon()
361 File imageFile = clone(srcFile); in testSaveAttributes_withFileName() local
362 String verboseTag = imageFile.getName(); in testSaveAttributes_withFileName()
368 assertBitmapsEquivalent(srcFile, imageFile); in testSaveAttributes_withFileName()
369 assertSecondSaveProducesSameSizeFile(imageFile); in testSaveAttributes_withFileName()
386 String verboseTag = imageFile.getName(); in testSaveAttributes_withFileDescriptor()
441 testExifInterfaceCommon(imageFile, expectedValue); in testExifInterfaceForJpeg()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskPersister.java614 FileOutputStream imageFile = null; in process() local
616 imageFile = new FileOutputStream(new File(filePath)); in process()
617 bitmap.compress(Bitmap.CompressFormat.PNG, 100, imageFile); in process()
621 IoUtils.closeQuietly(imageFile); in process()