HomeSort by relevance Sort by last modified time
    Searched refs:zfd (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/native/
zip_util.c 136 ZFILE_Close(ZFILE zfd) {
138 CloseHandle((HANDLE) zfd);
140 JVM_Close(zfd);
145 ZFILE_read(ZFILE zfd, char *buf, jint nbytes) {
147 return (int) IO_Read(zfd, buf, nbytes);
157 return read(zfd, buf, nbytes);
190 readFully(ZFILE zfd, void *buf, jlong len) {
198 jint n = ZFILE_read(zfd, bp, count);
218 readFullyAt(ZFILE zfd, void *buf, jlong len, jlong offset)
220 if (IO_Lseek(zfd, offset, SEEK_SET) == -1)
311 const ZFILE zfd = zip->zfd; local
790 ZFILE zfd = ZFILE_Open(name, mode); local
978 ZFILE zfd = zip->zfd; local
    [all...]
java_util_zip_ZipFile.c 104 ZFILE zfd = 0; local
106 zfd = winFileHandleOpen(env, name, flag);
107 if (zfd == -1) {
112 zfd = JVM_Open(path, flag, 0);
113 if (zfd < 0) {
118 zip = ZIP_Put_In_Cache0(path, zfd, &msg, lastModified, usemmap);
zip_util.h 220 ZFILE zfd; /* open file descriptor */ member in struct:jzfile
263 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified);
266 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified, jboolean usemmap);

Completed in 133 milliseconds