Home
last modified time | relevance | path

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

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipLong.java37 public static final ZipLong CFH_SIG = new ZipLong(0X02014B50L); field in ZipLong
DZipFile.java602 private static final long CFH_SIG =
603 ZipLong.getValue(ZipArchiveOutputStream.CFH_SIG);
627 if (sig != CFH_SIG && startsWithLocalFileHeader()) {
632 while (sig == CFH_SIG) {
DZipArchiveInputStream.java255 … if (sig.equals(ZipLong.CFH_SIG) || sig.equals(ZipLong.AED_SIG) || isApkSigningBlock(lfhBuf)) { in getNextZipEntry()
830 if (potentialSig.equals(ZipLong.CFH_SIG) || potentialSig.equals(ZipLong.LFH_SIG)) { in readDataDescriptor()
917 private static final byte[] CFH = ZipLong.CFH_SIG.getBytes();
DZipArchiveOutputStream.java1000 static final byte[] CFH_SIG = ZipLong.CFH_SIG.getBytes(); //NOSONAR field in ZipArchiveOutputStream
1252 System.arraycopy(CFH_SIG, 0, buf, CFH_SIG_OFFSET, WORD); in createCentralFileHeader()