Home | History | Annotate | Download | only in native

Lines Matching refs:jzentry

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;
1132 * Free the given jzentry.
1134 * jzentry for each zip. This optimizes a common access pattern.
1138 ZIP_FreeEntry(jzfile *jz, jzentry *ze)
1140 jzentry *last;
1146 /* Free the previously cached jzentry */
1158 jzentry *
1185 jzentry *
1190 jzentry *ze = 0;
1281 jzentry * JNICALL
1284 jzentry *result;
1318 ZIP_GetEntryDataOffset(jzfile *zip, jzentry *entry)
1325 * memory page containing the LOC when initializing jzentry
1354 ZIP_Read(jzfile *zip, jzentry *entry, jlong pos, void *buf, jint len)
1367 zip->msg = "ZIP_Read: jzentry is NULL";
1418 InflateFully(jzfile *zip, jzentry *entry, void *buf, char **msg)
1481 jzentry * JNICALL
1484 jzentry *entry = ZIP_GetEntry(zip, name, 0);
1494 * When the method completes, it releases the jzentry.
1499 ZIP_ReadEntry(jzfile *zip, jzentry *entry, unsigned char *buf, char *entryname)
1505 jio_fprintf(stderr, "jzentry was invalid");