Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DRunUtilTest.java296 OutputStream stderrStream = null; in testRuntimedCmd_withFileOutputStream() local
301 stderrStream = new FileOutputStream(stderr); in testRuntimedCmd_withFileOutputStream()
308 spyUtil.runTimedCmd(LONG_TIMEOUT_MS, stdoutStream, stderrStream, command); in testRuntimedCmd_withFileOutputStream()
313 "redirected to " + stderrStream.getClass().getSimpleName()); in testRuntimedCmd_withFileOutputStream()
349 OutputStream stderrStream = null; in testRuntimedCmd_notWritable() local
355 stderrStream = new FileOutputStream(stderr); in testRuntimedCmd_notWritable()
363 spyUtil.runTimedCmd(SHORT_TIMEOUT_MS, stdoutStream, stderrStream, command); in testRuntimedCmd_notWritable()
368 "redirected to " + stderrStream.getClass().getSimpleName()); in testRuntimedCmd_notWritable()
/tools/tradefederation/core/src/com/android/tradefed/util/
DRunUtil.java597 OutputStream stderrStream, boolean closeStreamAfterRun) { in RunnableResult() argument
613 if (stderrStream != null) { in RunnableResult()
614 stdErr = stderrStream; in RunnableResult()