Home | History | Annotate | Download | only in html

Lines Matching refs:bugreport

17 package com.android.bugreport.html;
19 import com.android.bugreport.anr.Anr;
20 import com.android.bugreport.bugreport.Bugreport;
21 import com.android.bugreport.cpuinfo.CpuUsage;
22 import com.android.bugreport.cpuinfo.CpuUsageSnapshot;
23 import com.android.bugreport.logcat.Logcat;
24 import com.android.bugreport.logcat.LogLine;
25 import com.android.bugreport.stacks.ProcessSnapshot;
26 import com.android.bugreport.stacks.JavaStackFrameSnapshot;
27 import com.android.bugreport.stacks.KernelStackFrameSnapshot;
28 import com.android.bugreport.stacks.LockSnapshot;
29 import com.android.bugreport.stacks.NativeStackFrameSnapshot;
30 import com.android.bugreport.stacks.StackFrameSnapshot;
31 import com.android.bugreport.stacks.ThreadSnapshot;
32 import com.android.bugreport.stacks.VmTraces;
50 * Formats a bugreport as html and writes the file.
62 * Render the Bugreport into the html file.
64 public void render(File outFile, Bugreport bugreport) throws IOException {
72 makeHdf(hdf, bugreport);
96 * Build the hdf for a Bugreport.
98 private void makeHdf(Data hdf, Bugreport bugreport) {
100 makeTriageHdf(hdf, bugreport);
103 makeLogcatHdf(hdf.createChild("logcat"), bugreport);
106 if (bugreport.monkeyAnr != null) {
107 makeAnrHdf(hdf, bugreport.monkeyAnr);
111 makeVmTracesHdf(hdf.createChild("vmTracesLastAnr"), bugreport.anr,
112 bugreport.vmTracesLastAnr);
115 makeVmTracesHdf(hdf.createChild("vmTracesJustNow"), bugreport.anr,
116 bugreport.vmTracesJustNow);
154 private void makeTriageHdf(Data hdf, Bugreport bugreport) {
155 final Anr anr = bugreport.anr;
493 private void makeLogcatHdf(Data hdf, Bugreport bugreport) {
497 N = bugreport.interestingLogLines.size();
499 final LogLine line = bugreport.interestingLogLines.get(i);
503 final Logcat logcat = bugreport.logcat;