Searched refs:zipOs (Results 1 – 2 of 2) sorted by relevance
101 try (ZipOutputStream zipOs = new ZipOutputStream(fos)) { in createDexMetadataFile() argument102 zipOs.putNextEntry(new ZipEntry("primary.prof")); in createDexMetadataFile()103 zipOs.closeEntry(); in createDexMetadataFile()106 zipOs.putNextEntry(new ZipEntry("manifest.json")); in createDexMetadataFile()123 zipOs.write(bytes, /*off=*/0, /*len=*/bytes.length); in createDexMetadataFile()125 zipOs.closeEntry(); in createDexMetadataFile()
2042 try (ZipOutputStream zipOs = new ZipOutputStream(getRawOutputStream())) { in dumpViewCaptureDataToShell() argument2045 zipOs.putNextEntry(new ZipEntry("FS" + fileName)); in dumpViewCaptureDataToShell()2046 transferViewCaptureData(is, zipOs); in dumpViewCaptureDataToShell()2047 zipOs.closeEntry(); in dumpViewCaptureDataToShell()