Home
last modified time | relevance | path

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

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DExifInterfaceTest.java187 File imageFile = new File(imageFilePath); in tearDown() local
188 if (imageFile.exists()) { in tearDown()
189 imageFile.delete(); in tearDown()
315 private void testExifInterfaceCommon(File imageFile, ExpectedValue expectedValue) in testExifInterfaceCommon() argument
317 String verboseTag = imageFile.getName(); in testExifInterfaceCommon()
320 ExifInterface exifInterface = new ExifInterface(imageFile.getAbsolutePath()); in testExifInterfaceCommon()
326 in = mContext.getAssets().open(imageFile.getName()); in testExifInterfaceCommon()
336 in = new BufferedInputStream(new FileInputStream(imageFile.getAbsolutePath())); in testExifInterfaceCommon()
346 fd = Os.open(imageFile.getAbsolutePath(), OsConstants.O_RDONLY, 0600); in testExifInterfaceCommon()
356 private void testSaveAttributes_withFileName(File imageFile, ExpectedValue expectedValue) in testSaveAttributes_withFileName() argument
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DTaskPersister.java610 FileOutputStream imageFile = null; in process() local
612 imageFile = new FileOutputStream(new File(filePath)); in process()
613 bitmap.compress(Bitmap.CompressFormat.PNG, 100, imageFile); in process()
617 IoUtils.closeQuietly(imageFile); in process()