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

/openjdk9/jdk/src/java.base/share/classes/java/util/zip/
H A DZipConstants.java39 static long LOCSIG = 0x04034b50L; // "PK\003\004" field in interface:ZipConstants
H A DZipFile.java750 if (LOCSIG(loc) != LOCSIG) {
881 private final boolean startsWithLoc; // true, if zip file starts with LOCSIG (usually true)
1000 this.startsWithLoc = (LOCSIG(buf) == LOCSIG);
1115 GETSIG(sbuf) != LOCSIG) {
H A DZipUtils.java196 static final long LOCSIG(byte[] b) { return LG(b, 0); } // signature method in class:ZipUtils
H A DZipInputStream.java283 if (get32(tmpbuf, 0) != LOCSIG) {
H A DZipOutputStream.java391 writeInt(LOCSIG); // LOC header signature
/openjdk9/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipInfo.java87 print(" Signature : %#010x%n", LOCSIG(loc));
88 if (LOCSIG(loc) != LOCSIG) {
H A DZipConstants.java56 static long LOCSIG = 0x04034b50L; // "PK\003\004" field in class:ZipConstants
201 static final long LOCSIG(byte[] b) { return LG(b, 0); } // signature method in class:ZipConstants
H A DZipFileSystem.java2097 writeInt(os, LOCSIG); // LOC header signature
/openjdk9/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

Completed in 169 milliseconds