/external/zlib/src/contrib/minizip/ |
D | zip.h | 67 typedef zipFile__ *zipFile; typedef 69 typedef voidp zipFile; 116 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append)); 117 extern zipFile ZEXPORT zipOpen64 OF((const void *pathname, int append)); 137 extern zipFile ZEXPORT zipOpen2 OF((const char *pathname, 142 extern zipFile ZEXPORT zipOpen2_64 OF((const void *pathname, 147 extern int ZEXPORT zipOpenNewFileInZip OF((zipFile file, 158 extern int ZEXPORT zipOpenNewFileInZip64 OF((zipFile file, 187 extern int ZEXPORT zipOpenNewFileInZip2 OF((zipFile file, 200 extern int ZEXPORT zipOpenNewFileInZip2_64 OF((zipFile file, [all …]
|
D | zip.c | 849 extern zipFile ZEXPORT zipOpen3 (const void *pathname, int append, zipcharpc* globalcomment, zlib_f… in zipOpen3() 916 return (zipFile)zi; in zipOpen3() 920 extern zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc* globalcomment, zlib_f… in zipOpen2() 932 extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zli… in zipOpen2_64() 948 extern zipFile ZEXPORT zipOpen (const char* pathname, int append) in zipOpen() 953 extern zipFile ZEXPORT zipOpen64 (const void* pathname, int append) in zipOpen64() 1055 extern int ZEXPORT zipOpenNewFileInZip4_64 (zipFile file, const char* filename, const zip_fileinfo*… in zipOpenNewFileInZip4_64() 1265 extern int ZEXPORT zipOpenNewFileInZip4 (zipFile file, const char* filename, const zip_fileinfo* zi… in zipOpenNewFileInZip4() 1281 extern int ZEXPORT zipOpenNewFileInZip3 (zipFile file, const char* filename, const zip_fileinfo* zi… in zipOpenNewFileInZip3() 1296 extern int ZEXPORT zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* … in zipOpenNewFileInZip3_64() [all …]
|
D | minizip.c | 371 zipFile zf;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | ZipDexContainer.java | 85 ZipFile zipFile = getZipFile(); in getDexEntryNames() local 87 Enumeration<? extends ZipEntry> entriesEnumeration = zipFile.entries(); in getDexEntryNames() 92 if (!isDex(zipFile, entry)) { in getDexEntryNames() 101 zipFile.close(); in getDexEntryNames() 113 ZipFile zipFile = getZipFile(); in getEntry() local 115 ZipEntry entry = zipFile.getEntry(entryName); in getEntry() 120 return loadEntry(zipFile, entry); in getEntry() 122 zipFile.close(); in getEntry() 127 ZipFile zipFile = null; in isZipFile() local 129 zipFile = getZipFile(); in isZipFile() [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/ObjCARC/ |
D | invoke.ll | 13 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 16 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 18 define void @test0(i8* %zipFile) { 20 call i8* @objc_retain(i8* %zipFile) nounwind 21 call void @use_pointer(i8* %zipFile) 22 invoke void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*)*)(i8* %zipFile) 26 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 32 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 40 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 44 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 [all …]
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | ZipInputFileProvider.java | 30 private final ZipFile zipFile; field in ZipInputFileProvider 34 this.zipFile = new ZipFile(root.toFile()); in ZipInputFileProvider() 39 zipFile.close(); in close() 49 ZipEntry zipEntry = zipFile.getEntry(filename); in getZipEntry() 56 return zipFile.getInputStream(zipFile.getEntry(filename)); in getInputStream() 62 Iterators.forEnumeration(zipFile.entries()), Functions.toStringFunction()); in iterator()
|
/external/llvm/test/Transforms/ObjCARC/ |
D | invoke.ll | 15 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW:#[0-9]+]], !clang.imprecise_release !0 18 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW]], !clang.imprecise_release !0 21 define void @test0(i8* %zipFile) personality i32 (...)* @__gxx_personality_v0 { 23 call i8* @objc_retain(i8* %zipFile) nounwind 24 call void @use_pointer(i8* %zipFile) 25 invoke void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*)*)(i8* %zipFile) 29 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 35 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0 43 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW]], !clang.imprecise_release !0 47 ; CHECK: call void @objc_release(i8* %zipFile) [[NUW]], !clang.imprecise_release !0 [all …]
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/ |
D | TestUtils.java | 59 public static void unzip(Path zipFile, Path outputFolder) throws IOException { in unzip() argument 60 Log.info("Unzipping %s to %s", zipFile, outputFolder); in unzip() 66 try (ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile.toFile()))) { in unzip() 89 Log.info("Unzipped %s to %s", zipFile, outputFolder); in unzip()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/ |
D | SourceZip.java | 103 try (ZipFile zipFile = new ZipFile(zipPath.toFile())) { in parse() argument 104 for (ZipEntry entry : Collections.list(zipFile.entries())) { in parse() 108 provider(zipFile.getInputStream(entry))); in parse()
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
D | AntJarProcessor.java | 63 protected void zipFile(InputStream is, ZipOutputStream zOut, String vPath, in zipFile() method in AntJarProcessor 76 super.zipFile(new ByteArrayInputStream(struct.data), in zipFile()
|
/external/vogar/src/vogar/target/ |
D | ClassPathScanner.java | 165 ZipFile zipFile = new ZipFile(jarFile); in getJarEntries() local 166 for (Enumeration<? extends ZipEntry> e = zipFile.entries(); e.hasMoreElements(); ) { in getJarEntries()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowAssetManager.java | 384 String zipFile = pathString.substring(pathString.indexOf(":") + 1, pathString.indexOf("!")); in getFileFromZip() local 389 ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile)); in getFileFromZip()
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetCreator.py | 1008 zipFile = dialog.GetPath() 1011 if not z.is_zipfile(zipFile): 1014 zip = z.ZipFile(zipFile, 'r')
|