Searched refs:reportFile (Results 1 – 3 of 3) sorted by relevance
68 File reportFile = new File(reportPath, baseName + ".zip"); in doInBackground() local71 out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(reportFile))); in doInBackground()88 return mContext.getString(R.string.report_saved, reportFile.getPath()); in doInBackground()
109 File reportFile = device.pullFile(reportPath); in getReportLines() local111 return FileUtil.readStringFromFile(reportFile).split("\n"); in getReportLines()116 reportFile.delete(); in getReportLines()
1995 File reportFile = new File(CrashUtils.DEVICE_PATH, testname); in getCrashReport() local1997 while ((!reportFile.exists() || !lockFile.exists()) && timeout > 0) { in getCrashReport()2002 if (!reportFile.exists() || !reportFile.isFile() || !lockFile.exists()) { in getCrashReport()2006 try (BufferedReader reader = new BufferedReader(new FileReader(reportFile))) { in getCrashReport()