Searched refs:MiscLogcatItem (Results 1 – 10 of 10) 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
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;347 MiscLogcatItem item = null; in commit()388 MiscLogcatItem logcatItem = new MiscLogcatItem(); in commit()
22 import com.android.loganalysis.item.MiscLogcatItem;193 for (MiscLogcatItem item : items.getEvents()) { in parseEvents()
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()
20 import com.android.loganalysis.item.MiscLogcatItem;278 List<MiscLogcatItem> lowMemKiller = item.getMiscEvents(LOW_MEMORY_KILLER_TAG); in addCrashesToString()