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

  /development/tools/bugreport/src/com/android/bugreport/logcat/
Logcat.java 30 public ArrayList<LogLine> lines = new ArrayList<LogLine>();
35 public ArrayList<LogLine> filter(Set<String> tags, String levels) {
36 final ArrayList<LogLine> result = new ArrayList<LogLine>();
37 for (LogLine line: lines) {
48 public ArrayList<LogLine> filter(String tag, String levels) {
49 final ArrayList<LogLine> result = new ArrayList<LogLine>();
50 for (LogLine line: lines)
    [all...]
LogcatParser.java 61 final LogLine ll = new LogLine();
70 final LogLine ll = new LogLine();
85 System.out.println("LogLine: time=" + ll.time + " pid=" + ll.pid
LogLine.java 29 public class LogLine extends Line {
  /development/tools/logblame/
test_logs.py 11 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "",
21 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "",
31 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "abcd",
43 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "abcd",
56 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "abcd",
68 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "abcd",
79 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "abcd",
91 expected = [ logs.LogLine(None, "03-29 00:46:58.872", "1000", "1815", "1816", "I", "abcd",
105 logs.LogLine("system", "03-29 00:46:58.857", "1000", "1815", "1816", "I", "Noisy", "Message"),
106 logs.LogLine("system", "03-29 00:46:58.858", "1000", "1815", "1816", "I", "Noisy", "Message")
    [all...]
logs.py 17 class LogLine(object):
48 logLine = LogLine(self.buf, self.timestamp, self.uid, self.pid, self.tid, self.level,
50 logLine.process = self.process
51 return logLine
62 for logLine in ParseLogcatInner(f, processes, duration):
63 if logLine.tag == "chatty" and logLine.level == "I":
64 m = CHATTY_IDENTICAL.match(logLine.text)
68 clone.timestamp = logLine.timestam
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/util/
LogTailUtil.java 32 private LinkedList<LogLine> mRingBuffer = new LinkedList<LogLine>();
40 private class LogLine {
44 public LogLine(Integer id, String line) {
77 mRingBuffer.add(new LogLine(id, line));
103 for (LogLine line : mRingBuffer.subList(fromIndex, toIndex)) {
128 ListIterator<LogLine> li = mRingBuffer.listIterator(mRingBuffer.size());
130 LogLine line = li.previous();
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
Bugreport.java 21 import com.android.bugreport.logcat.LogLine;
87 public ArrayList<LogLine> interestingLogLines = new ArrayList<LogLine>();
  /development/tools/bugreport/src/com/android/bugreport/inspector/
Inspector.java 26 import com.android.bugreport.logcat.LogLine;
175 final ArrayList<LogLine> logLines = mBugreport.systemLog.filter("ActivityManager", "E");
177 final ArrayList<Anr> anrs = parser.parse(new Lines<LogLine>(logLines), false);
576 private void inventLogcatTimes(ArrayList<LogLine> lines) {
584 final LogLine line = lines.get(i);
595 final LogLine line = lines.get(i);
602 final LogLine line = lines.get(i);
619 // LogLine.clone().
622 final ArrayList<LogLine> system = mBugreport.systemLog.lines;
623 final ArrayList<LogLine> event = mBugreport.eventLog.lines
    [all...]
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 90 LogLine("-----BEGIN BREAKPAD MICRODUMP-----");
96 LogLine("-----END BREAKPAD MICRODUMP-----");
103 void LogLine(const char* msg) {
142 LogLine(log_line_);
  /system/core/base/
logging.cpp 46 // Headers for LogMessage::LogLine.
414 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(),
422 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(),
441 void LogMessage::LogLine(const char* file, unsigned int line, LogId id,
  /development/tools/bugreport/src/com/android/bugreport/html/
Renderer.java 24 import com.android.bugreport.logcat.LogLine;
499 final LogLine line = bugreport.interestingLogLines.get(i);
507 final LogLine line = logcat.lines.get(i);
515 private void makeLogcatLineHdf(Data hdf, LogLine line) {
  /external/autotest/contrib/
log_distiller.py 153 class LogLine(object):
156 All classes inheriting from LogLine represent a line of some sort.
202 class TimeLine(LogLine):
  /system/core/base/include/android-base/
logging.h 413 static void LogLine(const char* file, unsigned int line, LogId id,
  /art/dex2oat/
dex2oat.cc 520 // LogLine also avoids ART logging lock issues, as it's really only a wrapper around
522 android::base::LogMessage::LogLine(__FILE__,
    [all...]

Completed in 196 milliseconds