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

/libcore/luni/src/main/java/java/util/jar/
H A DJarOutputStream.java51 ZipEntry ze = new ZipEntry(JarFile.MANIFEST_NAME);
52 putNextEntry(ze);
74 * @param ze
81 public void putNextEntry(ZipEntry ze) throws IOException { argument
82 super.putNextEntry(ze);
H A DStrictJarFile.java97 public Certificate[][] getCertificateChains(ZipEntry ze) { argument
99 return verifier.getCertificateChains(ze.getName());
116 public Certificate[] getCertificates(ZipEntry ze) { argument
118 Certificate[][] certChains = verifier.getCertificateChains(ze.getName());
140 public InputStream getInputStream(ZipEntry ze) { argument
141 final InputStream is = getZipInputStream(ze);
144 JarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName());
149 return new JarFile.JarFileInputStream(is, ze.getSize(), entry);
165 private InputStream getZipInputStream(ZipEntry ze) { argument
166 if (ze
[all...]
H A DJarFile.java142 final Enumeration<? extends ZipEntry> ze; field in class:JarFile.JarFileEnumerator
146 ze = zenum;
151 return ze.hasMoreElements();
155 return new JarEntry(ze.nextElement(), jf /* parentJar */);
367 * @param ze
374 public InputStream getInputStream(ZipEntry ze) throws IOException { argument
390 InputStream in = super.getInputStream(ze);
394 if (verifier == null || ze.getSize() == -1) {
397 JarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName());
401 return new JarFileInputStream(in, ze
[all...]
/libcore/luni/src/main/java/java/util/zip/
H A DZipOutputStream.java255 * @param ze
261 public void putNextEntry(ZipEntry ze) throws IOException { argument
267 int method = ze.getMethod();
274 if (ze.getCompressedSize() == -1) {
275 ze.setCompressedSize(ze.getSize());
276 } else if (ze.getSize() == -1) {
277 ze.setSize(ze.getCompressedSize());
279 if (ze
[all...]
H A DZipEntry.java328 * ze}.
330 * @param ze
333 public ZipEntry(ZipEntry ze) { argument
334 name = ze.name;
335 comment = ze.comment;
336 time = ze.time;
337 size = ze.size;
338 compressedSize = ze.compressedSize;
339 crc = ze.crc;
340 compressionMethod = ze
[all...]

Completed in 419 milliseconds