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

/libcore/ojluni/src/main/java/java/util/zip/
H A DZipFile.java64 private long jzfile; // address of jzfile data field in class:ZipFile
225 jzfile = open(name, mode, file.lastModified(), usemmap);
227 this.total = getTotal(jzfile);
228 this.locsig = startsWithLOC(jzfile);
301 byte[] bcomm = getCommentBytes(jzfile);
323 jzentry = getEntry(jzfile, zc.getBytes(name), true);
326 freeEntry(jzfile, jzentry);
333 private static native long getEntry(long jzfile, byte[] name, argument
337 private static native void freeEntry(long jzfile, lon argument
570 getNextEntry(long jzfile, int i) argument
657 close(long jzfile) argument
787 getFileDescriptor(long jzfile) argument
791 getTotal(long jzfile) argument
792 startsWithLOC(long jzfile) argument
793 read(long jzfile, long jzentry, long pos, byte[] b, int off, int len) argument
803 getCommentBytes(long jzfile) argument
810 getZipMessage(long jzfile) argument
[all...]
/libcore/ojluni/src/main/native/
H A Dzip_util.h180 unsigned int next; /* hash chain: index into jzfile->entries */
207 typedef struct jzfile { /* Zip file */ struct
229 struct jzfile *next; /* next zip file in search list */
237 } jzfile; typedef in typeref:struct:jzfile
245 ZIP_FindEntry(jzfile *zip, char *name, jint *sizeP, jint *nameLenP);
248 ZIP_ReadEntry(jzfile *zip, jzentry *entry, unsigned char *buf, char *entrynm);
251 ZIP_GetNextEntry(jzfile *zip, jint n);
253 jzfile * JNICALL
256 jzfile *
259 jzfile *
[all...]

Completed in 91 milliseconds