Home
last modified time | relevance | path

Searched refs:compressedSize (Results 1 – 6 of 6) sorted by relevance

/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DCentralDirectoryHeaderCompressInfo.java46 private final long compressedSize; field in CentralDirectoryHeaderCompressInfo
63 long compressedSize, in CentralDirectoryHeaderCompressInfo() argument
66 this.compressedSize = compressedSize; in CentralDirectoryHeaderCompressInfo()
78 @Nonnull CompressionMethod method, long compressedSize) { in CentralDirectoryHeaderCompressInfo() argument
80 this.compressedSize = compressedSize; in CentralDirectoryHeaderCompressInfo()
98 return compressedSize; in getCompressedSize()
DStoredEntry.java274 long compressedSize = cdh.getCompressionInfoWithWait().getCompressedSize(); in StoredEntry() local
276 compressedSize == 0 || compressedSize == 2, in StoredEntry()
277 "Directory has compressed size = %s.", compressedSize); in StoredEntry()
DCentralDirectory.java311 long compressedSize = F_COMPRESSED_SIZE.read(bytes); in readEntry() local
363 compressedSize, in readEntry()
/tools/apksig/src/main/java/com/android/apksig/internal/zip/
DCentralDirectoryRecord.java64 long compressedSize, in CentralDirectoryRecord() argument
75 mCompressedSize = compressedSize; in CentralDirectoryRecord()
151 long compressedSize = ZipUtils.getUnsignedInt32(buf); in getRecord() local
186 compressedSize, in getRecord()
223 long compressedSize, in createWithDeflateCompressedData() argument
240 ZipUtils.putUnsignedInt32(result, compressedSize); in createWithDeflateCompressedData()
262 compressedSize, in createWithDeflateCompressedData()
DLocalFileRecord.java196 long compressedSize = ZipUtils.getUnsignedInt32(header, COMPRESSED_SIZE_OFFSET); in getRecord() local
197 if (compressedSize != compressedDataSizeFromCdRecord) { in getRecord()
200 + " for entry " + entryName + ". LFH: " + compressedSize in getRecord()
/tools/metalava/src/main/java/com/android/tools/metalava/
DRewriteAnnotations.kt229 jarEntry.compressedSize = entry.compressedSize in <lambda>()