HomeSort by relevance Sort by last modified time
    Searched refs:LogcatItem (Results 1 - 11 of 11) sorted by null

  /tools/loganalysis/src/com/android/loganalysis/item/
LogcatItem.java 32 public class LogcatItem extends GenericItem {
48 * The constructor for {@link LogcatItem}.
50 public LogcatItem() {
154 public LogcatItem merge(IItem other) throws ConflictingItemException {
158 if (other == null || !(other instanceof LogcatItem)) {
162 LogcatItem logcat = (LogcatItem) other;
197 LogcatItem mergedLogcat = new LogcatItem();
BugreportItem.java 165 * Get the {@link LogcatItem} of the bugreport.
167 public LogcatItem getSystemLog() {
168 return (LogcatItem) getAttribute(SYSTEM_LOG);
172 * Set the {@link LogcatItem} of the bugreport.
174 public void setSystemLog(LogcatItem systemLog) {
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
LogcatParserFuncTest.java 18 import com.android.loganalysis.item.LogcatItem;
46 LogcatItem logcat = null;
LogcatParserTest.java 19 import com.android.loganalysis.item.LogcatItem;
48 LogcatItem logcat = new LogcatParser("2012").parse(lines);
72 LogcatItem logcat = new LogcatParser("2012").parse(lines);
95 LogcatItem logcat = new LogcatParser("2012").parse(lines);
137 LogcatItem logcat = logcatParser.parse(lines);
174 LogcatItem logcat = logcatParser.parse(lines);
200 LogcatItem logcat = new LogcatParser("2012").parse(lines);
227 LogcatItem logcat = new LogcatParser("2012").parse(lines);
254 LogcatItem logcat = new LogcatParser("2012").parse(lines);
277 LogcatItem logcat = new LogcatParser("2012").parse(lines)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/result/
LogcatCrashResultForwarder.java 19 import com.android.loganalysis.item.LogcatItem;
43 private LogcatItem mLogcatItem = null;
105 * @return A {@link LogcatItem} that contains the information inside the logcat.
107 private LogcatItem extractLogcat(ITestDevice device, long startTime) {
120 private String addJavaCrashToString(LogcatItem item, String errorMsg) {
  /tools/tradefederation/core/prod-tests/src/com/android/monkey/
MonkeyBrillopadForwarder.java 23 import com.android.loganalysis.item.LogcatItem;
119 LogcatItem systemLog = mBugreport.getSystemLog();
194 private void reportNativeCrashes(LogcatItem systemLog, Map<String, String> metrics,
  /tools/loganalysis/src/com/android/loganalysis/
LogAnalyzer.java 22 import com.android.loganalysis.item.LogcatItem;
124 LogcatItem logcat = new LogcatParser().parse(reader);
240 private void printLogcat(LogcatItem logcat) {
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
FrameworkStressTest.java 22 import com.android.loganalysis.item.LogcatItem;
158 LogcatItem systemLog = bugreport.getSystemLog();
  /tools/tradefederation/core/src/com/android/tradefed/util/
LogcatUpdaterEventParser.java 19 import com.android.loganalysis.item.LogcatItem;
275 LogcatItem item = mInternalParser.parse(ArrayUtil.list(lastLine));
  /tools/loganalysis/src/com/android/loganalysis/parser/
LogcatParser.java 18 import com.android.loganalysis.item.LogcatItem;
125 LogcatItem mLogcat = null;
171 * Parse a logcat from a {@link BufferedReader} into an {@link LogcatItem} object.
174 * @return The {@link LogcatItem}.
177 public LogcatItem parse(BufferedReader input) throws IOException {
190 * @return The {@link LogcatItem}.
193 public LogcatItem parse(List<String> lines) {
203 * Clear the existing {@link LogcatItem}. The next parse will create a new one.
221 mLogcat = new LogcatItem();
385 MiscLogcatItem logcatItem = new MiscLogcatItem()
    [all...]
BugreportParser.java 25 import com.android.loganalysis.item.LogcatItem;
205 mBugreport.setSystemLog((LogcatItem) getSection(mLogcatParser));
216 MiscLogcatItem logcatItem = (MiscLogcatItem) item;
217 logcatItem.setApp(mBugreport.getProcrank().getProcessName(
218 logcatItem.getPid()));

Completed in 691 milliseconds