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

/libcore/dex/src/main/java/com/android/dex/
H A DDexFormat.java41 /** common prefix for all dex file "magic numbers" */
44 /** common suffix for all dex file "magic numbers" */
72 * Returns the API level corresponding to the given magic number,
74 * magic number.
76 public static int magicToApi(byte[] magic) { argument
77 if (magic.length != 8) {
81 if ((magic[0] != 'd') || (magic[1] != 'e') || (magic[2] != 'x') || (magic[
[all...]
/libcore/luni/src/main/java/java/util/zip/
H A DZipFile.java449 static void throwZipException(String msg, int magic) throws ZipException { argument
450 final String hexString = IntegralToString.intToHexString(magic, true, 8);

Completed in 479 milliseconds