Searched refs:MiscLogcatItem (Results 1 – 11 of 11) sorted by relevance
45 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()
26 public class MiscLogcatItem extends GenericItem { class52 public MiscLogcatItem() { in MiscLogcatItem() method in MiscLogcatItem61 protected MiscLogcatItem(Set<String> attributes) { in MiscLogcatItem() method in MiscLogcatItem
337 public MiscLogcatItem getCrash() { in getCrash()338 return (MiscLogcatItem) getAttribute(CRASH); in getCrash()345 public void setCrash(MiscLogcatItem crash) { in setCrash()
27 public class NativeCrashItem extends MiscLogcatItem {
27 public class JavaCrashItem extends MiscLogcatItem {
27 public class AnrItem extends MiscLogcatItem {
28 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()
19 import com.android.loganalysis.item.MiscLogcatItem;156 MiscLogcatItem crash = null; in parseLine()281 MiscLogcatItem crash = new NativeCrashItem(); in parseLine()295 private void addCrashAndReset(MiscLogcatItem crash) { in addCrashAndReset()
19 import com.android.loganalysis.item.MiscLogcatItem;344 MiscLogcatItem item = null; in commit()385 MiscLogcatItem logcatItem = new MiscLogcatItem(); in commit()
20 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()
21 import com.android.loganalysis.item.MiscLogcatItem;179 for (MiscLogcatItem item : items.getEvents()) { in parseEvents()