Home
last modified time | relevance | path

Searched refs:inFile (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java207 File inFile = new File(path, fileName); in openFileOnMountedObb() local
210 inStream = new DataInputStream(new FileInputStream(inFile)); in openFileOnMountedObb()
392 File inFile = new File(path, filename); in doValidateIntContents() local
396 inStream = new DataInputStream(new FileInputStream(inFile)); in doValidateIntContents()
408 fail("File " + inFile + " not found: " + e.toString()); in doValidateIntContents()
410 fail("IOError with file " + inFile + ":" + e.toString()); in doValidateIntContents()
422 File inFile = new File(path, filename); in doValidateTextContents() local
427 fileReader = new BufferedReader(new FileReader(inFile)); in doValidateTextContents()
441 fail("IOError with file " + inFile + ":" + e.toString()); in doValidateTextContents()
458 File inFile = new File(path, filename); in doValidateZeroLongFile() local
[all …]
/aosp14/frameworks/base/packages/SystemUI/scripts/
H A Dnew_merge.py130 def prepareFileForCompare(inFile, outFile, skip="", replace="", withText=""): argument
135 fin = open(inFile)
/aosp14/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerTestApp.java172 FileInputStream inFile = mContext.openFileInput(DOWNLOAD_STARTED_FLAG); in verifyFileDownloadSucceeded() local
173 dataInputFile = new DataInputStream(inFile); in verifyFileDownloadSucceeded()
/aosp14/frameworks/base/tools/processors/immutability/test/android/processor/
H A DImmutabilityProcessorTest.kt348 .inFile(file)
/aosp14/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java398 DataInputStream inFile = new DataInputStream(new FileInputStream(file)); in verifyFileContents() local
403 ((expectedRead = inFile.read(expected)) != -1)) { in verifyFileContents()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DAppExitInfoTracker.java1160 private static boolean copyToGzFile(final File inFile, final File outFile, in copyToGzFile() argument
1164 BufferedInputStream in = new BufferedInputStream(new FileInputStream(inFile)); in copyToGzFile()
1179 Slog.e(TAG, "Error in copying ANR trace from " + inFile + " to " + outFile, e); in copyToGzFile()