Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/perfetto/src/com/android/helpers/
DPerfettoHelper.java141 String startOutput = null; in startCollectingFromConfig() local
174 startOutput = new String(inputStream.readAllBytes()); in startCollectingFromConfig()
178 mPerfettoPidFile = writePidToFile(startOutput); in startCollectingFromConfig()
180 if (!canUpdateAfterStartCollecting(startOutput)) { in startCollectingFromConfig()
188 stopPerfetto(Integer.parseInt(startOutput.trim())); in startCollectingFromConfig()
214 String startOutput = null; in startCollectingFromConfigFile() local
243 startOutput = mUIDevice.executeShellCommand(perfettoCmd); in startCollectingFromConfigFile()
247 mPerfettoPidFile = writePidToFile(startOutput); in startCollectingFromConfigFile()
249 Log.i(LOG_TAG, String.format("Perfetto start command output - %s", startOutput)); in startCollectingFromConfigFile()
251 if (!canUpdateAfterStartCollecting(startOutput)) { in startCollectingFromConfigFile()
[all …]
/platform_testing/libraries/collectors-helper/simpleperf/src/com/android/helpers/
DSimpleperfHelper.java91 String startOutput = mUiDevice.executeShellCommand(startCommand); in startCollecting() local
94 String.format("Simpleperf start command output - %s", startOutput)); in startCollecting()