Home
last modified time | relevance | path

Searched refs:cdSizeBytes (Results 1 – 3 of 3) sorted by relevance

/tools/apksig/src/main/java/com/android/apksig/
DApkSigner.java746 long cdSizeBytes = apkSections.getZipCentralDirectorySizeBytes(); in getZipCentralDirectory() local
747 if (cdSizeBytes > Integer.MAX_VALUE) { in getZipCentralDirectory()
748 throw new ApkFormatException("ZIP Central Directory too large: " + cdSizeBytes); in getZipCentralDirectory()
751 ByteBuffer cd = apk.getByteBuffer(cdOffset, (int) cdSizeBytes); in getZipCentralDirectory()
/tools/apksig/src/main/java/com/android/apksig/apk/
DApkUtils.java70 long cdSizeBytes = ZipUtils.getZipEocdCentralDirectorySizeBytes(eocdBuf); in findZipSections() local
71 long cdEndOffset = cdStartOffset + cdSizeBytes; in findZipSections()
83 cdSizeBytes, in findZipSections()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/
DV1SchemeVerifier.java1765 long cdSizeBytes = apkSections.getZipCentralDirectorySizeBytes(); in parseZipCentralDirectory() local
1766 if (cdSizeBytes > Integer.MAX_VALUE) { in parseZipCentralDirectory()
1767 throw new ApkFormatException("ZIP Central Directory too large: " + cdSizeBytes); in parseZipCentralDirectory()
1770 ByteBuffer cd = apk.getByteBuffer(cdOffset, (int) cdSizeBytes); in parseZipCentralDirectory()