Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/result/
DLogFileSaver.java282 BufferedInputStream bufInput = null; in saveAndGZipLogData() local
287 bufInput = new BufferedInputStream(dataStream); in saveAndGZipLogData()
289 StreamUtil.copyStreams(bufInput, outStream); in saveAndGZipLogData()
297 StreamUtil.close(bufInput); in saveAndGZipLogData()
319 BufferedInputStream bufInput = null; in saveAndGZipLogFile() local
325 bufInput = new BufferedInputStream(new FileInputStream(fileToLog)); in saveAndGZipLogFile()
327 StreamUtil.copyStreams(bufInput, outStream); in saveAndGZipLogFile()
335 StreamUtil.close(bufInput); in saveAndGZipLogFile()