Searched refs:LOCSIG (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipConstants.java38 static long LOCSIG = 0x04034b50L; // "PK\003\004" field in interface:ZipConstants
H A DZipInputStream.java281 if (get32(tmpbuf, 0) != LOCSIG) {
H A DZipOutputStream.java374 writeInt(LOCSIG); // LOC header signature
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipInfo.java102 print(" Signature : %#010x%n", LOCSIG(loc));
103 if (LOCSIG(loc) != LOCSIG) {
H A DZipConstants.java72 static long LOCSIG = 0x04034b50L; // "PK\003\004" field in class:ZipConstants
208 static final long LOCSIG(byte[] b) { return LG(b, 0); } // signature method in class:ZipConstants
H A DZipFileSystem.java2032 if (LOCSIG(buf) != LOCSIG)
2034 + Long.toString(LOCSIG(buf), 16));
2093 writeInt(os, LOCSIG); // LOC header signature
2236 if (LOCSIG(buf) != LOCSIG)
2238 + Long.toString(LOCSIG(buf), 16));
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DCorruptedZipFiles.java70 if (u32(good, locpos) != LOCSIG) fail("Where's LOCSIG?");
135 err.println("corrupted LOCSIG");
195 static final long LOCSIG = ZipFile.LOCSIG; field in class:CorruptedZipFiles
/openjdk7/jdk/src/share/bin/
H A Dmanifest_info.h35 #define LOCSIG 0x04034b50L /* "PK\003\004" */ macro
H A Dparse_manifest.c330 if (GETSIG(locbuf) != LOCSIG) {
/openjdk7/jdk/src/solaris/bin/
H A Djexec.c316 if (GETSIG(buf) == LOCSIG) {
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.h36 #define LOCSIG 0x04034b50L /* "PK\003\004" */ macro
213 jboolean locsig; /* if zip file starts with LOCSIG */
H A Dzip_util.c295 GETSIG(buf) == LOCSIG);
836 if (GETSIG(errbuf) == LOCSIG)
1265 if (GETSIG(loc) != LOCSIG) {

Completed in 53 milliseconds