Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/util/
DFileRotator.java152 final ZipOutputStream zos = new ZipOutputStream(os); in dumpAll() local
158 zos.putNextEntry(entry); in dumpAll()
163 Streams.copy(is, zos); in dumpAll()
168 zos.closeEntry(); in dumpAll()
172 IoUtils.closeQuietly(zos); in dumpAll()
/frameworks/base/packages/Shell/src/com/android/shell/
DBugreportProgressService.java1106 ZipOutputStream zos = new ZipOutputStream( in zipBugreport()
1108 addEntry(zos, info.bugreportFile.getName(), is); in zipBugreport()
1158 ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(tmpZip))) { in addDetailsToZipFileLocked()
1166 addEntry(zos, entryName, entry.getTime(), oldZip.getInputStream(entry)); in addDetailsToZipFileLocked()
1173 addEntry(zos, "title.txt", info.title); in addDetailsToZipFileLocked()
1174 addEntry(zos, "description.txt", info.description); in addDetailsToZipFileLocked()
1192 private static void addEntry(ZipOutputStream zos, String entry, String text) in addEntry() argument
1196 addEntry(zos, entry, new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8))); in addEntry()
1200 private static void addEntry(ZipOutputStream zos, String entryName, InputStream is) in addEntry() argument
1202 addEntry(zos, entryName, System.currentTimeMillis(), is); in addEntry()
[all …]
/frameworks/base/packages/Shell/tests/src/com/android/shell/
DBugreportReceiverTest.java991 try (ZipOutputStream zos = new ZipOutputStream( in createZipFile() argument
994 zos.putNextEntry(entry); in createZipFile()
996 zos.write(data, 0, data.length); in createZipFile()
997 zos.closeEntry(); in createZipFile()