Searched defs:zos (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java1097 ZipOutputStream zos = new ZipOutputStream(
1099 addEntry(zos, info.bugreportFile.getName(), is);
1149 ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(tmpZip))) {
1157 addEntry(zos, entryName, entry.getTime(), oldZip.getInputStream(entry));
1164 addEntry(zos, "title.txt", info.title);
1165 addEntry(zos, "description.txt", info.description);
1183 private static void addEntry(ZipOutputStream zos, String entry, String text) argument
1187 addEntry(zos, entry, new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)));
1191 private static void addEntry(ZipOutputStream zos, String entryName, InputStream is) argument
1193 addEntry(zos, entryNam
1196 addEntry(ZipOutputStream zos, String entryName, long timestamp, InputStream is) argument
[all...]

Completed in 63 milliseconds