Searched refs:cdSizeBytes (Results 1 – 3 of 3) sorted by relevance
70 long cdSizeBytes = ZipUtils.getZipEocdCentralDirectorySizeBytes(eocdBuf); in findZipSections() local71 long cdEndOffset = cdStartOffset + cdSizeBytes; in findZipSections()83 cdSizeBytes, in findZipSections()
666 long cdSizeBytes = apkSections.getZipCentralDirectorySizeBytes(); in getZipCentralDirectory() local667 if (cdSizeBytes > Integer.MAX_VALUE) { in getZipCentralDirectory()668 throw new ApkFormatException("ZIP Central Directory too large: " + cdSizeBytes); in getZipCentralDirectory()671 ByteBuffer cd = apk.getByteBuffer(cdOffset, (int) cdSizeBytes); in getZipCentralDirectory()
1744 long cdSizeBytes = apkSections.getZipCentralDirectorySizeBytes(); in parseZipCentralDirectory() local1745 if (cdSizeBytes > Integer.MAX_VALUE) { in parseZipCentralDirectory()1746 throw new ApkFormatException("ZIP Central Directory too large: " + cdSizeBytes); in parseZipCentralDirectory()1749 ByteBuffer cd = apk.getByteBuffer(cdOffset, (int) cdSizeBytes); in parseZipCentralDirectory()