Home | History | Annotate | Download | only in inspector

Lines Matching refs:bugreport

17 package com.android.bugreport.inspector;
19 import com.android.bugreport.anr.Anr;
20 import com.android.bugreport.anr.AnrParser;
21 import com.android.bugreport.bugreport.Bugreport;
22 import com.android.bugreport.bugreport.ProcessInfo;
23 import com.android.bugreport.bugreport.ThreadInfo;
24 import com.android.bugreport.logcat.Logcat;
25 import com.android.bugreport.logcat.LogcatParser;
26 import com.android.bugreport.logcat.LogLine;
27 import com.android.bugreport.stacks.ProcessSnapshot;
28 import com.android.bugreport.stacks.JavaStackFrameSnapshot;
29 import com.android.bugreport.stacks.LockSnapshot;
30 import com.android.bugreport.stacks.StackFrameSnapshot;
31 import com.android.bugreport.stacks.ThreadSnapshot;
32 import com.android.bugreport.stacks.VmTraces;
33 import com.android.bugreport.util.Utils;
34 import com.android.bugreport.util.Lines;
45 * Inspects a raw parsed bugreport. Makes connections between the different sections,
56 private final Bugreport mBugreport;
59 * Inspect a bugreport.
61 public static void inspect(Bugreport bugreport) {
62 (new Inspector(bugreport)).inspect();
68 private Inspector(Bugreport bugreport) {
69 mBugreport = bugreport;
119 * and add them to the Bugreport.
165 * If there isn't already an ANR set on the bugreport (e.g. from monkeys), find
414 * Mark threads to be flagged in the bugreport view.
815 * Mark the log lines that were captured while this bugreport was being
817 * when the user saw the bug that caused them to take a bugreport.
834 * the bugreport, and no more than 5000 lines before the beginning of the bugreport.
848 // If we've gotten to 3s after when the bugreport started getting taken, stop.