Home | History | Annotate | Download | only in tests

Lines Matching refs:logcat

172         LogFileType.LOGCAT
187 LogFileType.LOGCAT
244 l = new LogFileData(".txt", "logcat", LogDataType.TEXT);
245 result.put(LogFileType.LOGCAT, l);
334 // Stop logcat logging so we can record one logcat log per iteration
517 // Clear logcat
520 getDevice().executeAdbCommand("logcat", "-c");
551 // Grab logcat for iteration
840 private void saveLogcatForIteration(ResultData data, InputStreamSource logcat, int iteration) {
841 if (logcat == null) {
842 CLog.i("Logcat could not be saved for iteration " + iteration);
850 data.setLogFile(LogFileType.LOGCAT, temp.getAbsolutePath());
852 // Copy logcat data into temp file
853 Files.copy(logcat.createInputStream(), temp.toPath(), REPLACE_EXISTING);
854 logcat.close();
856 CLog.i("Error when saving logcat for iteration=" + iteration);