Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/util/
DGCSFileDownloader.java75 ByteArrayOutputStream tmpStream = null; in downloadFile() local
80 tmpStream = new ByteArrayOutputStream(); in downloadFile()
81 StreamUtil.copyStreams(remoteInput, tmpStream); in downloadFile()
82 return new ByteArrayInputStream(tmpStream.toByteArray()); in downloadFile()
85 StreamUtil.close(tmpStream); in downloadFile()