Home
last modified time | relevance | path

Searched refs:LFH_SIG (Results 1 – 4 of 4) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipArchiveInputStream.java254 if (!sig.equals(ZipLong.LFH_SIG)) { in getNextZipEntry()
646 if (length < ZipArchiveOutputStream.LFH_SIG.length) { in matches()
650 return checksig(signature, ZipArchiveOutputStream.LFH_SIG) // normal file in matches()
830 if (potentialSig.equals(ZipLong.CFH_SIG) || potentialSig.equals(ZipLong.LFH_SIG)) { in readDataDescriptor()
916 private static final byte[] LFH = ZipLong.LFH_SIG.getBytes();
DZipLong.java40 public static final ZipLong LFH_SIG = new ZipLong(0X04034B50L); field in ZipLong
DZipArchiveOutputStream.java992 static final byte[] LFH_SIG = ZipLong.LFH_SIG.getBytes(); //NOSONAR field in ZipArchiveOutputStream
1078 System.arraycopy(LFH_SIG, 0, buf, LFH_SIG_OFFSET, WORD); in createLocalFileHeader()
DZipFile.java1089 return Arrays.equals(wordBuf, ZipArchiveOutputStream.LFH_SIG);