Searched refs:ze (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp105 const ZipEntry& ze = zipEntry->entry; local
108 *pMethod = ze.method;
111 *pUncompLen = ze.uncompressed_length;
114 *pCompLen = ze.compressed_length;
117 *pOffset = ze.offset;
120 *pModWhen = ze.mod_time;
123 *pCrc32 = ze.crc32;
135 _ZipEntryRO* ze = new _ZipEntryRO; local
138 int32_t error = StartIteration(mHandle, &(ze->cookie),
143 delete ze;
153 _ZipEntryRO* ze = reinterpret_cast<_ZipEntryRO*>(cookie); local
201 const ZipEntry& ze = zipEntry->entry; local
[all...]
/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java164 public Certificate[][] getCertificateChains(ZipEntry ze) { argument
166 return verifier.getCertificateChains(ze.getName());
183 public Certificate[] getCertificates(ZipEntry ze) { argument
185 Certificate[][] certChains = verifier.getCertificateChains(ze.getName());
207 public InputStream getInputStream(ZipEntry ze) { argument
208 final InputStream is = getZipInputStream(ze);
211 StrictJarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName());
216 return new JarFileInputStream(is, ze.getSize(), entry);
246 private InputStream getZipInputStream(ZipEntry ze) { argument
247 if (ze
[all...]

Completed in 1328 milliseconds