Home
last modified time | relevance | path

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

/tools/tradefederation/core/common_util/com/android/tradefed/util/
DRunUtil.java257 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 RunUtil
1238 public ForkedOutputStream(OutputStream out, FileOutputStream fileOutputStream) { in ForkedOutputStream() method in RunUtil.ForkedOutputStream