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.java72 ByteArrayOutputStream tmpStream = null; in downloadFile() local
77 tmpStream = new ByteArrayOutputStream(); in downloadFile()
78 StreamUtil.copyStreams(remoteInput, tmpStream); in downloadFile()
79 return new ByteArrayInputStream(tmpStream.toByteArray()); in downloadFile()
82 StreamUtil.close(tmpStream); in downloadFile()