Home
last modified time | relevance | path

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

/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DGraphicsStatsMonitor.java202 BufferedReader stream = executeShellCommand("dumpsys graphicsstats"); in gatherGraphicsStats() local
207 while ((line = stream.readLine()) != null) { in gatherGraphicsStats()
213 line = stream.readLine(); in gatherGraphicsStats()
216 line = stream.readLine(); in gatherGraphicsStats()
220 line = stream.readLine(); in gatherGraphicsStats()
223 line = stream.readLine(); in gatherGraphicsStats()
228 line = stream.readLine(); in gatherGraphicsStats()
235 line = stream.readLine(); in gatherGraphicsStats()
238 line = stream.readLine(); in gatherGraphicsStats()
241 line = stream.readLine(); in gatherGraphicsStats()
[all …]
DProcessStatusTracker.java190 BufferedReader stream = executeShellCommand("ps"); in getRunningAppProcesses() local
193 while ((line = stream.readLine()) != null) { in getRunningAppProcesses()
206 if (stream != null) { in getRunningAppProcesses()
207 stream.close(); in getRunningAppProcesses()
234 BufferedReader stream = new BufferedReader(new InputStreamReader( in executeShellCommand() local
236 return stream; in executeShellCommand()