Home
last modified time | relevance | path

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

/tools/loganalysis/src/com/android/loganalysis/item/
DLogcatItem.java45 private class ItemList extends LinkedList<MiscLogcatItem> {}
87 public List<MiscLogcatItem> getEvents() { in getEvents()
94 public void addEvent(MiscLogcatItem event) { in addEvent()
140 public List<MiscLogcatItem> getMiscEvents(String category) { in getMiscEvents()
141 List<MiscLogcatItem> items = new LinkedList<MiscLogcatItem>(); in getMiscEvents()
142 for (MiscLogcatItem item : getEvents()) { in getMiscEvents()
175 for (MiscLogcatItem event : getEvents()) { in merge()
185 for (MiscLogcatItem event : logcat.getEvents()) { in merge()
211 for (MiscLogcatItem event : getEvents()) { in toJson()
DMiscLogcatItem.java26 public class MiscLogcatItem extends GenericItem { class
52 public MiscLogcatItem() { in MiscLogcatItem() method in MiscLogcatItem
61 protected MiscLogcatItem(Set<String> attributes) { in MiscLogcatItem() method in MiscLogcatItem
DNativeCrashItem.java27 public class NativeCrashItem extends MiscLogcatItem {
DJavaCrashItem.java27 public class JavaCrashItem extends MiscLogcatItem {
DAnrItem.java27 public class AnrItem extends MiscLogcatItem {
/tools/loganalysis/src/com/android/loganalysis/parser/
DBugreportParser.java28 import com.android.loganalysis.item.MiscLogcatItem;
214 if (item instanceof MiscLogcatItem && in commit()
215 ((MiscLogcatItem) item).getApp() == null) { in commit()
216 MiscLogcatItem logcatItem = (MiscLogcatItem) item; in commit()
DLogcatParser.java19 import com.android.loganalysis.item.MiscLogcatItem;
347 MiscLogcatItem item = null; in commit()
388 MiscLogcatItem logcatItem = new MiscLogcatItem(); in commit()
/tools/tradefederation/core/src/com/android/tradefed/util/
DGenericLogcatEventParser.java22 import com.android.loganalysis.item.MiscLogcatItem;
193 for (MiscLogcatItem item : items.getEvents()) { in parseEvents()
/tools/loganalysis/javatests/com/android/loganalysis/parser/
DLogcatParserTest.java20 import com.android.loganalysis.item.MiscLogcatItem;
376 MiscLogcatItem item = logcat.getMiscEvents(LogcatParser.HIGH_CPU_USAGE).get(0); in testParse_misc_events()
741 List<MiscLogcatItem> matchedEvents = logcat.getMiscEvents("HelloCategory"); in testAddPattern_byTagOnly()
766 List<MiscLogcatItem> matchedEvents = logcat.getMiscEvents("WatchdogCategory"); in testAddPattern_byLevelAndTagOnly()
789 List<MiscLogcatItem> matchedEvents = logcat.getMiscEvents("WatchdogCategory"); in testAddPattern_byLevelTagAndMessageOnly()
/tools/tradefederation/core/src/com/android/tradefed/result/
DLogcatCrashResultForwarder.java20 import com.android.loganalysis.item.MiscLogcatItem;
278 List<MiscLogcatItem> lowMemKiller = item.getMiscEvents(LOW_MEMORY_KILLER_TAG); in addCrashesToString()