Searched refs:ForkedOutputStream (Results 1 – 1 of 1) sorted by relevance
257 stdout = new ForkedOutputStream(stdout, new FileOutputStream(stdoutBuffer)); in runTimedCmdWithOutputMonitor()261 stderr = new ForkedOutputStream(stderr, new FileOutputStream(stderrBuffer)); in runTimedCmdWithOutputMonitor()279 ForkedOutputStream stdoutForkedStream = (ForkedOutputStream) stdout; in runTimedCmdWithOutputMonitor()280 ForkedOutputStream stderrForkedStream = in runTimedCmdWithOutputMonitor()281 stderr != null ? (ForkedOutputStream) stderr : null; in runTimedCmdWithOutputMonitor()1233 private static class ForkedOutputStream extends OutputStream { class in RunUtil1238 public ForkedOutputStream(OutputStream out, FileOutputStream fileOutputStream) { in ForkedOutputStream() method in RunUtil.ForkedOutputStream