Home
last modified time | relevance | path

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

/tools/loganalysis/src/com/android/loganalysis/item/
DLogcatItem.java32 public class LogcatItem extends GenericItem { class
50 public LogcatItem() { in LogcatItem() method in LogcatItem
154 public LogcatItem merge(IItem other) throws ConflictingItemException { in merge()
158 if (other == null || !(other instanceof LogcatItem)) { in merge()
162 LogcatItem logcat = (LogcatItem) other; in merge()
197 LogcatItem mergedLogcat = new LogcatItem(); in merge()
DBugreportItem.java167 public LogcatItem getSystemLog() { in getSystemLog()
168 return (LogcatItem) getAttribute(SYSTEM_LOG); in getSystemLog()
174 public void setSystemLog(LogcatItem systemLog) { in setSystemLog()
/tools/loganalysis/javatests/com/android/loganalysis/parser/
DLogcatParserTest.java19 import com.android.loganalysis.item.LogcatItem;
48 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_anr()
72 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_anr_pid()
95 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash()
137 LogcatItem logcat = logcatParser.parse(lines); in testParse_test_exception()
174 LogcatItem logcat = logcatParser.parse(lines); in testParse_test_exception_with_exras()
200 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash_system_server()
227 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash_process_pid()
254 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash_pid()
277 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash_empty()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/result/
DLogcatCrashResultForwarder.java19 import com.android.loganalysis.item.LogcatItem;
76 private LogcatItem mLogcatItem = null;
214 private LogcatItem extractLogcat(ITestDevice device, long startTime) { in extractLogcat()
236 LogcatItem result = null; in extractLogcat()
249 private String addCrashesToString(LogcatItem item, String errorMsg) { in addCrashesToString()
/tools/loganalysis/src/com/android/loganalysis/
DLogAnalyzer.java22 import com.android.loganalysis.item.LogcatItem;
119 LogcatItem logcat = new LogcatParser().parse(reader); in run()
228 private void printLogcat(LogcatItem logcat) { in printLogcat()
/tools/loganalysis/src/com/android/loganalysis/parser/
DLogcatParser.java18 import com.android.loganalysis.item.LogcatItem;
125 LogcatItem mLogcat = null;
177 public LogcatItem parse(BufferedReader input) throws IOException { in parse()
193 public LogcatItem parse(List<String> lines) { in parse()
224 mLogcat = new LogcatItem(); in parseLine()
DBugreportParser.java25 import com.android.loganalysis.item.LogcatItem;
205 mBugreport.setSystemLog((LogcatItem) getSection(mLogcatParser)); in commit()
/tools/tradefederation/core/src/com/android/tradefed/util/
DGenericLogcatEventParser.java21 import com.android.loganalysis.item.LogcatItem;
184 LogcatItem items; in parseEvents()