Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DRunUtilTest.java295 OutputStream stdoutStream = null; in testRuntimedCmd_withFileOutputStream() local
299 stdoutStream = new FileOutputStream(stdout); in testRuntimedCmd_withFileOutputStream()
308 spyUtil.runTimedCmd(LONG_TIMEOUT_MS, stdoutStream, stderrStream, command); in testRuntimedCmd_withFileOutputStream()
311 "redirected to " + stdoutStream.getClass().getSimpleName()); in testRuntimedCmd_withFileOutputStream()
348 OutputStream stdoutStream = null; in testRuntimedCmd_notWritable() local
352 stdoutStream = new FileOutputStream(stdout); in testRuntimedCmd_notWritable()
363 spyUtil.runTimedCmd(SHORT_TIMEOUT_MS, stdoutStream, stderrStream, command); in testRuntimedCmd_notWritable()
366 "redirected to " + stdoutStream.getClass().getSimpleName()); in testRuntimedCmd_notWritable()
/tools/tradefederation/core/src/com/android/tradefed/util/
DRunUtil.java596 final ProcessBuilder processBuilder, OutputStream stdoutStream, in RunnableResult() argument
608 if (stdoutStream != null) { in RunnableResult()
609 stdOut = stdoutStream; in RunnableResult()