Searched defs:manifestBytes (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/jar/
H A DJarFile.java54 private byte[] manifestBytes; field in class:JarFile
221 manifestBytes = metaEntries.get(MANIFEST_NAME);
298 // If manifest == null && manifestBytes == null, there's no manifest.
299 if (manifestBytes == null) {
306 manifest = new Manifest(manifestBytes, false);
307 manifestBytes = null;
375 if (manifestBytes != null) {
H A DManifest.java101 Manifest(byte[] manifestBytes, boolean readChunks) throws IOException { argument
106 read(manifestBytes);

Completed in 100 milliseconds