OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:metaEntries
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/util/jar/
JarVerifier.java
69
private HashMap<String, byte[]>
metaEntries
= new HashMap<String, byte[]>(5);
235
metaEntries
.put(name.toUpperCase(Locale.US), buf);
256
if (
metaEntries
== null) {
259
Iterator<String> it =
metaEntries
.keySet().iterator();
265
if (
metaEntries
== null) {
280
byte[] sfBytes =
metaEntries
.get(signatureFile);
285
byte[] manifest =
metaEntries
.get(JarFile.MANIFEST_NAME);
291
byte[] sBlockBytes =
metaEntries
.get(certFile);
300
if (
metaEntries
== null) {
360
metaEntries
.put(signatureFile, null)
[
all
...]
JarFile.java
318
ZipEntry[]
metaEntries
= getMetaEntriesImpl();
319
if (
metaEntries
== null) {
326
for (ZipEntry entry :
metaEntries
) {
Completed in 1286 milliseconds