Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/
DShellCommandUtils.java102 String out = new String(readStreamAndClose(fdOut)); in executeCommand()
103 String err = new String(readStreamAndClose(fdErr)); in executeCommand()
144 byte[] out = readStreamAndClose(fdOut); in executeCommandForBytes()
145 String err = new String(readStreamAndClose(fdErr)); in executeCommandForBytes()
269 private static byte[] readStreamAndClose(ParcelFileDescriptor fd) throws IOException { in readStreamAndClose() method in ShellCommandUtils