Searched defs:jar (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/util/jar/
H A DStrictJarManifestReader.java18 package android.util.jar;
25 import java.util.jar.Attributes;
29 * http://java.sun.com/javase/6/docs/technotes/guides/jar/jar.html
83 throw new IOException("A jar verifier does not support more than one entry with the same name");
H A DStrictJarManifest.java18 package android.util.jar;
31 import java.util.jar.Attributes;
H A DStrictJarFile.java18 package android.util.jar;
32 import java.util.jar.JarFile;
41 * {@link java.util.jar.JarFile}
128 * Return all certificate chains for a given {@link ZipEntry} belonging to this jar.
132 * Returns {@code null} if this jar file isn't signed or if this method is
144 * Return all certificates for a given {@link ZipEntry} belonging to this jar.
148 * Returns {@code null} if this jar file isn't signed or if this method is
H A DStrictJarVerifier.java18 package android.util.jar;
38 import java.util.jar.Attributes;
39 import java.util.jar.JarFile;
337 throw new GeneralSecurityException("IO exception verifying jar cert", e);
463 * associated jar file is signed.
/frameworks/base/tools/aapt/
H A DPackage.cpp126 fprintf(stderr, "ERROR: unable to process jar files while packaging '%s'\n",
133 printf("Included %d file%s from jar/zip files.\n", count, (count==1) ? "" : "s");
403 ssize_t processJarFile(ZipFile* jar, ZipFile* out) argument
405 size_t N = jar->getNumEntries();
408 ZipEntry* entry = jar->getEntryByIndex(i);
413 const void* data = jar->uncompress(entry);
435 ZipFile jar; local
436 err = jar.open(jars[i], ZipFile::kOpenReadOnly);
442 err += processJarFile(&jar, zip);

Completed in 90 milliseconds