Searched refs:zipFile (Results 1 – 9 of 9) sorted by relevance
/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/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/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | DexFileFactory.java | 84 ZipFile zipFile = null; in loadDexFile() local 87 zipFile = new ZipFile(dexFile); in loadDexFile() 92 ZipEntry zipEntry = zipFile.getEntry(zipEntryName); in loadDexFile() 105 ByteStreams.readFully(zipFile.getInputStream(zipEntry), dexBytes); in loadDexFile() 113 if (zipFile != null) { in loadDexFile() 115 zipFile.close(); in loadDexFile()
|
/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/commands/ |
D | Jack.java | 131 public Jack outputDexZip(String zipFile) { in outputDexZip() argument 132 builder.args("--output-dex-zip", zipFile); in outputDexZip()
|
/external/vogar/src/vogar/target/ |
D | ClassPathScanner.java | 133 ZipFile zipFile = new ZipFile(jarFile); in getJarEntries() local 134 for (Enumeration<? extends ZipEntry> e = zipFile.entries(); e.hasMoreElements(); ) { in getJarEntries()
|
/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')
|