Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DReportExporter.java150 File reportZipFile = new File(verifierReportsDir, reportName + ZIP_EXTENSION); in doInBackground() local
178 ZipUtil.createZip(tempDir, reportZipFile); in doInBackground()
186 saveReportOnInternalStorage(reportZipFile); in doInBackground()
187 return mContext.getString(R.string.report_saved, reportZipFile.getPath()); in doInBackground()
206 private void saveReportOnInternalStorage(File reportZipFile) { in saveReportOnInternalStorage() argument
208 Log.d(TAG, "---- saveReportOnInternalStorage(" + reportZipFile.getAbsolutePath() + ")"); in saveReportOnInternalStorage()
212 ParcelFileDescriptor.open(reportZipFile, ParcelFileDescriptor.MODE_READ_ONLY); in saveReportOnInternalStorage()
216 File verifierReport = new File(verifierDir, reportZipFile.getName()); in saveReportOnInternalStorage()