Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/
DShellCommandUtils.java81 static String executeCommand(String command, boolean allowEmptyOutput, byte[] stdInBytes) in executeCommand() argument
83 logCommand(command, allowEmptyOutput, stdInBytes); in executeCommand()
86 if (stdInBytes != null && stdInBytes.length > 0) { in executeCommand()
100 writeStdInAndClose(fdIn, stdInBytes); in executeCommand()
123 static byte[] executeCommandForBytes(String command, byte[] stdInBytes) throws AdbException { in executeCommandForBytes() argument
124 logCommand(command, /* allowEmptyOutput= */ false, stdInBytes); in executeCommandForBytes()
127 if (stdInBytes != null && stdInBytes.length > 0) { in executeCommandForBytes()
142 writeStdInAndClose(fdIn, stdInBytes); in executeCommandForBytes()
157 private static void logCommand(String command, boolean allowEmptyOutput, byte[] stdInBytes) { in logCommand() argument
167 if (stdInBytes != null) { in logCommand()
[all …]