Home
last modified time | relevance | path

Searched refs:Lines (Results 1 – 13 of 13) sorted by relevance

/development/tools/bugreport/src/com/android/bugreport/util/
DLines.java31 public class Lines<T extends Line> { class
44 public static Lines<Line> readLines(File file) throws IOException { in readLines()
48 return Lines.readLines(reader); in readLines()
59 public static Lines<Line> readLines(BufferedReader in) throws IOException { in readLines()
69 return new Lines<Line>(list); in readLines()
75 public Lines(ArrayList<? extends Line> list) { in Lines() method in Lines
86 private Lines(ArrayList<? extends Line> list, int min, int max) { in Lines() method in Lines
138 public Lines<T> copy(int from, int to) { in copy()
139 return new Lines<T>(mList, Math.max(mMin, from), Math.min(mMax, to)); in copy()
/development/tools/bugreport/src/com/android/bugreport/monkey/
DMonkeyLogParser.java23 import com.android.bugreport.util.Lines;
48 public void parse(Bugreport bugreport, Lines<? extends Line> in) throws IOException { in parse()
50 final Lines<Line> lines = extractAnrLines(in); in parse()
73 private static Lines<Line> extractAnrLines(Lines<? extends Line> lines) throws IOException { in extractAnrLines()
109 return new Lines<Line>(list); in extractAnrLines()
/development/tools/bugreport/src/com/android/bugreport/
DMain.java25 import com.android.bugreport.util.Lines;
78 bugreport = parser.parse(Lines.readLines(options.bugreport)); in run()
90 parser.parse(bugreport, Lines.readLines(options.monkey)); in run()
103 bugreport.logcat = parser.parse(Lines.readLines(options.logcat)); in run()
/development/tools/bugreport/src/com/android/bugreport/bugreport/
DMetadataParser.java20 import com.android.bugreport.util.Lines;
59 public void parseHeader(Lines<? extends Line> lines) { in parseHeader()
83 public void parseFooter(Lines<? extends Line> lines, int durationMs) { in parseFooter()
DBugreportParser.java23 import com.android.bugreport.util.Lines;
75 public void parse(String section, String command, Lines<? extends Line> lines); in parse()
93 public Bugreport parse(Lines<? extends Line> lines) { in parse()
158 private void parseSection(String section, Lines<? extends Line> lines, String command, in parseSection()
190 public void parse(String section, String command, Lines<? extends Line> lines) {
211 public void parse(String section, String command, Lines<? extends Line> lines) {
/development/tools/bugreport/src/com/android/bugreport/cpuinfo/
DCpuUsageParser.java21 import com.android.bugreport.util.Lines;
43 public CpuUsageSnapshot parse(Lines<? extends Line> lines) { in parse()
/development/tools/bugreport/src/com/android/bugreport/stacks/
DVmTracesParser.java23 import com.android.bugreport.util.Lines;
52 public VmTraces parse(Lines<? extends Line> lines) { in parse()
DProcessSnapshotParser.java20 import com.android.bugreport.util.Lines;
53 public ProcessSnapshot parse(Lines<? extends Line> lines) { in parse()
DThreadSnapshotParser.java20 import com.android.bugreport.util.Lines;
92 public ThreadSnapshot parse(Lines<? extends Line> lines) { in parse()
/development/tools/bugreport/src/com/android/bugreport/logcat/
DLogcatParser.java20 import com.android.bugreport.util.Lines;
49 public Logcat parse(Lines<? extends Line> lines) { in parse()
/development/tools/bugreport/src/com/android/bugreport/anr/
DAnrParser.java23 import com.android.bugreport.util.Lines;
58 public ArrayList<Anr> parse(Lines<? extends Line> lines, boolean tryTraces) { in parse()
/development/tools/bugreport/src/com/android/bugreport/inspector/
DInspector.java34 import com.android.bugreport.util.Lines;
177 final ArrayList<Anr> anrs = parser.parse(new Lines<LogLine>(logLines), false); in findAnr()
/development/cmds/monkey/
DREADME.NETWORK.txt124 Lines starting with a # character are considered comments. The Monkey