Searched refs:zfd (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c135 ZFILE_Close(ZFILE zfd) { argument
137 CloseHandle((HANDLE) zfd);
139 JVM_Close(zfd);
144 ZFILE_read(ZFILE zfd, char *buf, jint nbytes) { argument
146 return (int) IO_Read(zfd, buf, nbytes);
156 return read(zfd, buf, nbytes);
189 readFully(ZFILE zfd, void *buf, jlong len) { argument
197 jint n = ZFILE_read(zfd, bp, count);
217 readFullyAt(ZFILE zfd, void *buf, jlong len, jlong offset) argument
219 if (IO_Lseek(zfd, offse
310 const ZFILE zfd = zip->zfd; local
744 ZFILE zfd = ZFILE_Open(name, mode); local
804 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified) argument
810 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified, jboolean usemmap) argument
932 ZFILE zfd = zip->zfd; local
[all...]
H A DZipFile.c99 ZFILE zfd = 0; local
101 zfd = winFileHandleOpen(env, name, flag);
102 if (zfd == -1) {
107 zfd = JVM_Open(path, flag, 0);
108 if (zfd < 0) {
113 zip = ZIP_Put_In_Cache0(path, zfd, &msg, lastModified, usemmap);
H A Dzip_util.h215 ZFILE zfd; /* open file descriptor */ member in struct:jzfile
258 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified);
261 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified, jboolean usemmap);

Completed in 35 milliseconds