Home | History | Annotate | Download | only in inspector

Lines Matching refs:logcat

24 import com.android.bugreport.logcat.Logcat;
25 import com.android.bugreport.logcat.LogcatParser;
26 import com.android.bugreport.logcat.LogLine;
166 * one in the logcat.
561 * Fill in times for the logcat section log lines that don't have one (like
567 if (mBugreport.logcat != null) {
568 inventLogcatTimes(mBugreport.logcat.lines);
573 * Fill in times for a logcat section by taking the time from an adjacent line.
611 // Only do this if they haven't already supplied a logcat.
612 if (mBugreport.logcat != null) {
616 // Renumber the logcat lines. We mess up the other lists, but that
617 // saves the work of making copies of the logcat lines. If this
621 final Logcat result = mBugreport.logcat = new Logcat();
728 // ANR logcat
738 final Logcat logcat = mBugreport.logcat;
741 for (LogLine line: logcat.lines) {
761 final Logcat logcat = mBugreport.logcat;
767 for (LogLine line: logcat.lines) {
780 final Logcat logcat = mBugreport.logcat;
786 for (LogLine line: logcat.lines) {
806 for (LogLine line: mBugreport.logcat.lines) {
822 for (LogLine line: mBugreport.logcat.lines) {
833 * Trim the logcat to show no more than 3 seconds after the beginning of
840 final ArrayList<LogLine> lines = mBugreport.logcat.lines;
868 mBugreport.logcat.lines = new ArrayList<LogLine>(lines.subList(startIndex, endIndex));