Home
last modified time | relevance | path

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

/tools/tradefederation/core/common_util/com/android/tradefed/cache/remote/
DRemoteCacheClient.java138 OutputStream stderrStream = null; in lookupCache() local
158 stderrStream = new FileOutputStream(stderr); in lookupCache()
159 downloads.add(mDownloader.downloadBlob(stderrDigest, stderrStream)); in lookupCache()
167 if (stderrStream != null) { in lookupCache()
168 stderrStream.close(); in lookupCache()
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DRunUtilTest.java534 OutputStream stderrStream = null; in testRuntimedCmd_withFileOutputStream() local
539 stderrStream = new FileOutputStream(stderr); in testRuntimedCmd_withFileOutputStream()
546 spyUtil.runTimedCmd(LONG_TIMEOUT_MS, stdoutStream, stderrStream, command); in testRuntimedCmd_withFileOutputStream()
551 result.getStderr(), "redirected to " + stderrStream.getClass().getSimpleName()); in testRuntimedCmd_withFileOutputStream()
588 OutputStream stderrStream = null; in testRuntimedCmd_notWritable() local
594 stderrStream = new FileOutputStream(stderr); in testRuntimedCmd_notWritable()
602 spyUtil.runTimedCmd(LONG_TIMEOUT_MS, stdoutStream, stderrStream, command); in testRuntimedCmd_notWritable()
608 result.getStderr(), "redirected to " + stderrStream.getClass().getSimpleName()); in testRuntimedCmd_notWritable()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/binary/
DExecutableHostTest.java146 FileOutputStream stderrStream = new FileOutputStream(stderr); ) { in runBinary()
151 stderrStream, in runBinary()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DRunUtil.java865 final OutputStream stderrStream, in RunnableResult() argument
884 mStdErr = stderrStream; in RunnableResult()
1218 FileInputStream stderrStream = new FileInputStream(result.stdErr()); in handleCachedResult() local
1220 StreamUtil.copyStreams(stderrStream, stderr); in handleCachedResult()
1222 stderrStream.close(); in handleCachedResult()