Home
last modified time | relevance | path

Searched refs:jzentry (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/annotations/hiddenapi/java/util/zip/
DZipFile.java71 private static native void freeEntry(long jzfile, long jzentry); in freeEntry() argument
98 private java.util.zip.ZipEntry getZipEntry(java.lang.String name, long jzentry) { in getZipEntry() argument
145 private static native int read(long jzfile, long jzentry, long pos, byte[] b, int off, int len); in read() argument
147 private static native long getEntryTime(long jzentry); in getEntryTime() argument
149 private static native long getEntryCrc(long jzentry); in getEntryCrc() argument
151 private static native long getEntryCSize(long jzentry); in getEntryCSize() argument
153 private static native long getEntrySize(long jzentry); in getEntrySize() argument
155 private static native int getEntryMethod(long jzentry); in getEntryMethod() argument
157 private static native int getEntryFlag(long jzentry); in getEntryFlag() argument
161 private static native byte[] getEntryBytes(long jzentry, int type); in getEntryBytes() argument
[all …]
/libcore/ojluni/src/main/native/
Dzip_util.h161 typedef struct jzentry { /* Zip file entry */ struct
172 } jzentry; argument
233 jzentry *cache; /* we cache the most recently freed jzentry */
247 JNIEXPORT jzentry *
251 ZIP_ReadEntry(jzfile *zip, jzentry *entry, unsigned char *buf, char *entrynm);
253 JNIEXPORT jzentry *
274 jzentry *
281 ZIP_Read(jzfile *zip, jzentry *entry, jlong pos, void *buf, jint len);
283 ZIP_FreeEntry(jzfile *zip, jzentry *ze);
284 jlong ZIP_GetEntryDataOffset(jzfile *zip, jzentry *entry);
[all …]
DZipFile.c168 jzentry *ze; in ZipFile_getEntry()
193 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_freeEntry()
201 jzentry *ze = ZIP_GetNextEntry(jlong_to_ptr(zfile), n); in ZipFile_getNextEntry()
208 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntryMethod()
215 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntryFlag()
222 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntryCSize()
229 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntrySize()
236 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntryTime()
243 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntryCrc()
264 jzentry *ze = jlong_to_ptr(zentry); in ZipFile_getEntryBytes()
Dzip_util.c1108 static jzentry *
1113 jzentry *ze; in newEntry()
1116 if ((ze = (jzentry *) malloc(sizeof(jzentry))) == NULL) return NULL; in newEntry()
1223 ZIP_FreeEntry(jzfile *jz, jzentry *ze) in ZIP_FreeEntry()
1225 jzentry *last; in ZIP_FreeEntry()
1243 jzentry *
1270 jzentry *
1275 jzentry *ze = 0; in ZIP_GetEntry2()
1366 JNIEXPORT jzentry *
1369 jzentry *result; in ZIP_GetNextEntry()
[all …]