Home
last modified time | relevance | path

Searched refs:reportFile (Results 1 – 3 of 3) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
DReportExporter.java68 File reportFile = new File(reportPath, baseName + ".zip"); in doInBackground() local
71 out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(reportFile))); in doInBackground()
88 return mContext.getString(R.string.report_saved, reportFile.getPath()); in doInBackground()
/cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
DReportProcessor.java109 File reportFile = device.pullFile(reportPath); in getReportLines() local
111 return FileUtil.readStringFromFile(reportFile).split("\n"); in getReportLines()
116 reportFile.delete(); in getReportLines()
/cts/tests/tests/security/src/android/security/cts/
DStagefrightTest.java1917 File reportFile = new File(CrashUtils.DEVICE_PATH, testname); in getCrashReport() local
1919 while ((!reportFile.exists() || !lockFile.exists()) && timeout > 0) { in getCrashReport()
1924 if (!reportFile.exists() || !reportFile.isFile() || !lockFile.exists()) { in getCrashReport()
1928 try (BufferedReader reader = new BufferedReader(new FileReader(reportFile))) { in getCrashReport()