Searched refs:readStreamAndClose (Results 1 – 1 of 1) sorted by relevance
143 String out = new String(readStreamAndClose(fdOut)); in executeCommand()144 String err = new String(readStreamAndClose(fdErr)); in executeCommand()181 byte[] out = readStreamAndClose(fdOut); in executeCommandForBytes()182 String err = new String(readStreamAndClose(fdErr)); in executeCommandForBytes()318 private static byte[] readStreamAndClose(ParcelFileDescriptor fd) throws IOException { in readStreamAndClose() method in ShellCommandUtils