Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowGcsLogServlet.java175 Blob blobFile = vtsInfraLogBucket.get(filePathInfo.toString()); in downloadHandler() local
177 if (blobFile.exists()) { in downloadHandler()
179 response.setContentLength(blobFile.getSize().intValue()); in downloadHandler()
184 response.getOutputStream().write(blobFile.getContent()); in downloadHandler()
214 Blob blobFile = (Blob) this.syncCache.get(path.toString()); in defaultHandler() local
215 if (blobFile == null) { in defaultHandler()
216 blobFile = vtsReportBucket.get(path); in defaultHandler()
217 this.syncCache.put(path.toString(), blobFile); in defaultHandler() local
221 InputStream blobInputStream = new ByteArrayInputStream(blobFile.getContent()); in defaultHandler()
251 response.setContentLength(blobFile.getSize().intValue()); in defaultHandler()
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsSuiteTestJobServlet.java214 Blob blobFile = (Blob) this.syncCache.get(filePath); in doPost() local
215 if (Objects.isNull(blobFile)) { in doPost()
217 blobFile = vtsReportBucket.get(filePath); in doPost()
218 this.syncCache.put(filePath, blobFile); in doPost()
221 if (blobFile.exists()) { in doPost()
226 blobFile.getContent()); in doPost()