Home
last modified time | relevance | path

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

/cts/hostsidetests/edi/src/android/edi/cts/
DDynamicPartitionsDeviceInfo.java39 CommandResult commandResult = device.executeShellV2Command( in collectDeviceInfo() local
41 if (commandResult.getExitCode() == null) { in collectDeviceInfo()
45 if (commandResult.getExitCode() != 0) { in collectDeviceInfo()
46 CLog.e("lpdump returns %d: %s", commandResult.getExitCode(), in collectDeviceInfo()
47 commandResult.getStderr()); in collectDeviceInfo()
51 if (commandResult.getExitCode() == 0 && !commandResult.getStderr().isEmpty()) { in collectDeviceInfo()
53 commandResult.getStderr()); in collectDeviceInfo()
56 String output = commandResult.getStdout(); in collectDeviceInfo()
/cts/tests/tests/media/src/android/media/cts/
DMediaSession2Test.java317 Session2Command.Result commandResult = new Session2Command.Result(resultCode, null); in testBroadcastSessionCommand() local
333 return commandResult; in testBroadcastSessionCommand()
351 return commandResult; in testBroadcastSessionCommand()
502 Session2Command.Result commandResult = new Session2Command.Result(resultCode, resultData); in testCallback_onCommandResult() local
511 return commandResult; in testCallback_onCommandResult()
741 Session2Command.Result commandResult = in onSessionCommand() local
743 return commandResult; in onSessionCommand()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DDeviceAndProfileOwnerTest.java1849 final String commandResult = in getEnabledSystemPackageNames() local
1852 return new ArrayList<>(Arrays.asList(commandResult.split("\n"))) in getEnabledSystemPackageNames()