Searched defs:ze (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/jar/
H A DJarEntry.java58 * @param ze the <code>ZipEntry</code> object to create the
61 public JarEntry(ZipEntry ze) { argument
62 super(ze);
H A DJarOutputStream.java85 * @param ze the ZIP/JAR entry to be written
89 public void putNextEntry(ZipEntry ze) throws IOException { argument
93 byte[] edata = ze.getExtra();
105 ze.setExtra(edata);
109 super.putNextEntry(ze);
H A DJarFile.java234 ZipEntry ze = super.getEntry(name);
235 if (ze != null) {
236 return new JarFileEntry(ze);
251 ZipEntry ze = (ZipEntry)enum_.nextElement();
252 return new JarFileEntry(ze);
258 JarFileEntry(ZipEntry ze) { argument
259 super(ze);
393 private byte[] getBytes(ZipEntry ze) throws IOException { argument
394 try (InputStream is = super.getInputStream(ze)) {
395 return IOUtils.readFully(is, (int)ze
412 getInputStream(ZipEntry ze) argument
574 newEntry(ZipEntry ze) argument
[all...]
/libcore/ojluni/src/main/native/
H A Djava_util_zip_ZipFile.c173 jzentry *ze; local
187 ze = ZIP_GetEntry(zip, path, 0);
189 ze = ZIP_GetEntry(zip, path, (jint)ulen);
194 return ptr_to_jlong(ze);
202 jzentry *ze = jlong_to_ptr(zentry); local
203 ZIP_FreeEntry(zip, ze);
210 jzentry *ze = ZIP_GetNextEntry(jlong_to_ptr(zfile), n); local
211 return ptr_to_jlong(ze);
217 jzentry *ze = jlong_to_ptr(zentry); local
218 return ze
224 jzentry *ze = jlong_to_ptr(zentry); local
231 jzentry *ze = jlong_to_ptr(zentry); local
238 jzentry *ze = jlong_to_ptr(zentry); local
245 jzentry *ze = jlong_to_ptr(zentry); local
252 jzentry *ze = jlong_to_ptr(zentry); local
273 jzentry *ze = jlong_to_ptr(zentry); local
[all...]
H A Dzip_util.c1023 jzentry *ze; local
1026 if ((ze = (jzentry *) malloc(sizeof(jzentry))) == NULL) return NULL;
1027 ze->name = NULL;
1028 ze->extra = NULL;
1029 ze->comment = NULL;
1047 ze->time = CENTIM(cen);
1048 ze->size = CENLEN(cen);
1049 ze->csize = (CENHOW(cen) == STORED) ? 0 : CENSIZ(cen);
1050 ze->crc = CENCRC(cen);
1052 ze
1132 ZIP_FreeEntry(jzfile *jz, jzentry *ze) argument
1157 jzentry *ze = 0; local
[all...]

Completed in 533 milliseconds