Home
last modified time | relevance | path

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

/aosp12/packages/modules/StatsD/tests/src/android/cts/statsd/atom/
H A DAtomTestCase.java1158 Queue<String> responseLines = new LinkedList<>(Arrays.asList(response.split("[\\r\\n]+"))); in getTelephonyDumpEntries() local
1161 while (responseLines.peek() != null) { in getTelephonyDumpEntries()
1162 Matcher matcher = classNamePattern.matcher(responseLines.poll()); in getTelephonyDumpEntries()
1166 while (responseLines.peek() != null) { in getTelephonyDumpEntries()
1168 matcher = indentPattern.matcher(responseLines.peek()); in getTelephonyDumpEntries()
1169 if (responseLines.peek().length() == 0 || !matcher.matches()) { in getTelephonyDumpEntries()
1170 responseLines.poll(); in getTelephonyDumpEntries()
1179 matcher = keyValuePattern.matcher(responseLines.poll()); in getTelephonyDumpEntries()