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

  /libcore/ojluni/src/main/java/java/util/zip/
ZipFile.java 337 long jzentry = 0; local
340 jzentry = getEntry(jzfile, zc.getBytes(name), true);
341 if (jzentry != 0) {
342 ZipEntry ze = getZipEntry(name, jzentry);
343 freeEntry(jzfile, jzentry);
353 // freeEntry releases the C jzentry struct.
354 private static native void freeEntry(long jzfile, long jzentry);
378 long jzentry = 0; local
384 jzentry = getEntry(jzfile, zc.getBytesUTF8(entry.name), true);
387 jzentry = getEntry(jzfile, zc.getBytes(entry.name), true)
542 long jzentry = getNextEntry(jzfile, i++); local
735 protected long jzentry; \/\/ address of jzentry data field in class:ZipFile.ZipFileInputStream
    [all...]
  /libcore/ojluni/src/main/native/
zip_util.h 149 * - jzentry time and crc fields are signed even though they really
160 typedef struct jzentry { /* Zip file entry */ struct
171 } jzentry; typedef in typeref:struct:jzentry
232 jzentry *cache; /* we cache the most recently freed jzentry */
246 jzentry * JNICALL
250 ZIP_ReadEntry(jzfile *zip, jzentry *entry, unsigned char *buf, char *entrynm);
252 jzentry * JNICALL
273 jzentry * ZIP_GetEntry(jzfile *zip, char *name, jint ulen);
276 jint ZIP_Read(jzfile *zip, jzentry *entry, jlong pos, void *buf, jint len)
    [all...]
java_util_zip_ZipFile.c 173 jzentry *ze;
198 jzentry *ze = jlong_to_ptr(zentry);
206 jzentry *ze = ZIP_GetNextEntry(jlong_to_ptr(zfile), n);
213 jzentry *ze = jlong_to_ptr(zentry);
220 jzentry *ze = jlong_to_ptr(zentry);
227 jzentry *ze = jlong_to_ptr(zentry);
234 jzentry *ze = jlong_to_ptr(zentry);
241 jzentry *ze = jlong_to_ptr(zentry);
248 jzentry *ze = jlong_to_ptr(zentry);
269 jzentry *ze = jlong_to_ptr(zentry)
    [all...]
zip_util.c 243 /* First free any cached jzentry */
1017 * Return a new initialized jzentry corresponding to a given hash cell.
1023 static jzentry *
1028 jzentry *ze;
1031 if ((ze = (jzentry *) malloc(sizeof(jzentry))) == NULL) return NULL;
    [all...]

Completed in 312 milliseconds