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.c167 jzentry *ze; local
181 ze = ZIP_GetEntry(zip, path, 0);
183 ze = ZIP_GetEntry(zip, path, (jint)ulen);
188 return ptr_to_jlong(ze);
196 jzentry *ze = jlong_to_ptr(zentry); local
197 ZIP_FreeEntry(zip, ze);
204 jzentry *ze = ZIP_GetNextEntry(jlong_to_ptr(zfile), n); local
205 return ptr_to_jlong(ze);
211 jzentry *ze = jlong_to_ptr(zentry); local
212 return ze
218 jzentry *ze = jlong_to_ptr(zentry); local
225 jzentry *ze = jlong_to_ptr(zentry); local
232 jzentry *ze = jlong_to_ptr(zentry); local
239 jzentry *ze = jlong_to_ptr(zentry); local
246 jzentry *ze = jlong_to_ptr(zentry); local
267 jzentry *ze = jlong_to_ptr(zentry); local
[all...]
H A Dzip_util.c1032 jzentry *ze; local
1035 if ((ze = (jzentry *) malloc(sizeof(jzentry))) == NULL) return NULL;
1036 ze->name = NULL;
1037 ze->extra = NULL;
1038 ze->comment = NULL;
1056 ze->time = CENTIM(cen);
1057 ze->size = CENLEN(cen);
1058 ze->csize = (CENHOW(cen) == STORED) ? 0 : CENSIZ(cen);
1059 ze->crc = CENCRC(cen);
1061 ze
1141 ZIP_FreeEntry(jzfile *jz, jzentry *ze) argument
1166 jzentry *ze = 0; local
[all...]

Completed in 620 milliseconds