Searched refs:stderrStream (Results 1 – 4 of 4) sorted by relevance
/tools/tradefederation/core/common_util/com/android/tradefed/cache/remote/ |
D | RemoteCacheClient.java | 138 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/ |
D | RunUtilTest.java | 534 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/ |
D | ExecutableHostTest.java | 146 FileOutputStream stderrStream = new FileOutputStream(stderr); ) { in runBinary() 151 stderrStream, in runBinary()
|
/tools/tradefederation/core/common_util/com/android/tradefed/util/ |
D | RunUtil.java | 865 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()
|