Home
last modified time | relevance | path

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

/tools/tradefederation/contrib/src/com/android/media/tests/
DAudioLevelUtility.java39 final String shellOutput = receiver.getOutput(); in extractDeviceHeadsetLevelFromAdbShell() local
40 if (shellOutput == null || shellOutput.isEmpty()) { in extractDeviceHeadsetLevelFromAdbShell()
45 int pos = shellOutput.indexOf(STREAM_MUSIC); in extractDeviceHeadsetLevelFromAdbShell()
47 pos = shellOutput.indexOf(HEADSET, pos); in extractDeviceHeadsetLevelFromAdbShell()
50 final int stop = shellOutput.indexOf(",", start); in extractDeviceHeadsetLevelFromAdbShell()
52 final String audioLevelStr = shellOutput.substring(start, stop); in extractDeviceHeadsetLevelFromAdbShell()
DPanoramaBenchMarkTest.java63 String shellOutput = mTestDevice.executeShellCommand( in run() local
67 String[] lines = shellOutput.split("\n"); in run()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DGoogleBenchmarkTest.java471 String shellOutput = null; in executeCommandByScript() local
474 shellOutput = testDevice.executeShellCommand(String.format("sh %s", tmpFileDevice)); in executeCommandByScript()
486 return shellOutput; in executeCommandByScript()