Home
last modified time | relevance | path

Searched refs:LINES (Results 1 – 7 of 7) sorted by relevance

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DDmesgParserTest.java41 private static final String[] LINES = field in DmesgParserTest
96 DmesgItem actualDmesgItem = dmesgParser.parse(Arrays.asList(LINES)); in testCompleteDmesgLog_passedAsList()
115 new ByteArrayInputStream(String.join("\n", LINES).getBytes())))) { in testCompleteDmesgLog_passedAsBufferedInput()
132 for (String line : LINES) { in testCompleteServiceInfo()
146 for (String line : LINES) { in testStartServiceInfo()
163 for (String line : LINES) { in testMultipleServiceInfo()
197 for (String line : LINES) { in testCompleteStageInfo()
208 for (String line : LINES) { in testCompleteActionInfo()
/tools/loganalysis/tests/src/com/android/loganalysis/item/
DMemInfoItemTest.java40 assertTrue(output.has(MemInfoItem.LINES)); in testToJson()
41 assertTrue(output.get(MemInfoItem.LINES) instanceof JSONObject); in testToJson()
45 JSONObject lines = output.getJSONObject(MemInfoItem.LINES); in testToJson()
DSystemPropsItemTest.java40 assertTrue(output.has(SystemPropsItem.LINES)); in testToJson()
41 assertTrue(output.get(SystemPropsItem.LINES) instanceof JSONObject); in testToJson()
45 JSONObject lines = output.getJSONObject(SystemPropsItem.LINES); in testToJson()
DProcrankItemTest.java41 assertTrue(output.has(ProcrankItem.LINES)); in testToJson()
42 assertTrue(output.get(ProcrankItem.LINES) instanceof JSONArray); in testToJson()
46 JSONArray lines = output.getJSONArray(ProcrankItem.LINES); in testToJson()
/tools/loganalysis/src/com/android/loganalysis/item/
DMemInfoItem.java28 public static final String LINES = "LINES"; field in MemInfoItem
55 object.put(LINES, super.toJson()); in toJson()
DSystemPropsItem.java28 public static final String LINES = "LINES"; field in SystemPropsItem
55 object.put(LINES, super.toJson()); in toJson()
DProcrankItem.java35 public static final String LINES = "LINES"; field in ProcrankItem
195 object.put(LINES, lines); in toJson()