HomeSort by relevance Sort by last modified time
    Searched refs:metaEntries (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/util/jar/
StrictJarVerifier.java 75 private final HashMap<String, byte[]> metaEntries;
176 HashMap<String, byte[]> metaEntries, boolean signatureSchemeRollbackProtectionsEnforced) {
179 this.metaEntries = metaEntries;
263 metaEntries.put(name.toUpperCase(Locale.US), buf);
284 if (metaEntries.isEmpty()) {
288 Iterator<String> it = metaEntries.keySet().iterator();
349 byte[] sfBytes = metaEntries.get(signatureFile);
354 byte[] manifestBytes = metaEntries.get(JarFile.MANIFEST_NAME);
360 byte[] sBlockBytes = metaEntries.get(certFile)
    [all...]
StrictJarFile.java 85 HashMap<String, byte[]> metaEntries = getMetaEntries();
86 this.manifest = new StrictJarManifest(metaEntries.get(JarFile.MANIFEST_NAME), true);
91 metaEntries,
254 HashMap<String, byte[]> metaEntries = new HashMap<String, byte[]>();
259 metaEntries.put(entry.getName(), Streams.readFully(getInputStream(entry)));
262 return metaEntries;

Completed in 185 milliseconds