Searched refs:ze (Results 1 – 2 of 2) sorted by relevance
121 const ZipEntry& ze = zipEntry->entry; in getEntryInfo() local124 *pMethod = ze.method; in getEntryInfo()127 *pUncompLen = ze.uncompressed_length; in getEntryInfo()130 *pCompLen = ze.compressed_length; in getEntryInfo()133 *pOffset = ze.offset; in getEntryInfo()136 *pModWhen = ze.mod_time; in getEntryInfo()139 *pCrc32 = ze.crc32; in getEntryInfo()151 _ZipEntryRO* ze = new _ZipEntryRO; in startIteration() local154 int32_t error = StartIteration(mHandle, &(ze->cookie), in startIteration()160 delete ze; in startIteration()[all …]
164 public Certificate[][] getCertificateChains(ZipEntry ze) { in getCertificateChains() argument166 return verifier.getCertificateChains(ze.getName()); in getCertificateChains()183 public Certificate[] getCertificates(ZipEntry ze) { in getCertificates() argument185 Certificate[][] certChains = verifier.getCertificateChains(ze.getName()); in getCertificates()207 public InputStream getInputStream(ZipEntry ze) { in getInputStream() argument208 final InputStream is = getZipInputStream(ze); in getInputStream()211 StrictJarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName()); in getInputStream()216 return new JarFileInputStream(is, ze.getSize(), entry); in getInputStream()246 private InputStream getZipInputStream(ZipEntry ze) { in getZipInputStream() argument247 if (ze.getMethod() == ZipEntry.STORED) { in getZipInputStream()[all …]