Searched refs:zipOs (Results 1 – 2 of 2) sorted by relevance
100 try (ZipOutputStream zipOs = new ZipOutputStream(fos)) { in createDexMetadataFile() argument101 zipOs.putNextEntry(new ZipEntry("primary.prof")); in createDexMetadataFile()102 zipOs.closeEntry(); in createDexMetadataFile()105 zipOs.putNextEntry(new ZipEntry("manifest.json")); in createDexMetadataFile()122 zipOs.write(bytes, /*off=*/0, /*len=*/bytes.length); in createDexMetadataFile()124 zipOs.closeEntry(); in createDexMetadataFile()
1506 try (ZipOutputStream zipOs = new ZipOutputStream(getRawOutputStream())) { in dumpViewCaptureDataToShell() argument1509 zipOs.putNextEntry(new ZipEntry("FS" + fileName)); in dumpViewCaptureDataToShell()1510 is.transferTo(zipOs); in dumpViewCaptureDataToShell()1511 zipOs.closeEntry(); in dumpViewCaptureDataToShell()