Home
last modified time | relevance | path

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

/tools/apksig/src/main/java/com/android/apksig/internal/zip/
DCentralDirectoryRecord.java239 ZipUtils.putUnsignedInt32(result, crc32); in createWithDeflateCompressedData()
240 ZipUtils.putUnsignedInt32(result, compressedSize); in createWithDeflateCompressedData()
241 ZipUtils.putUnsignedInt32(result, uncompressedSize); in createWithDeflateCompressedData()
247 ZipUtils.putUnsignedInt32(result, 0); // External file attributes in createWithDeflateCompressedData()
248 ZipUtils.putUnsignedInt32(result, localFileHeaderOffset); in createWithDeflateCompressedData()
DLocalFileRecord.java354 ZipUtils.putUnsignedInt32(result, crc32); in outputRecordWithDeflateCompressedData()
355 ZipUtils.putUnsignedInt32(result, compressedData.length); in outputRecordWithDeflateCompressedData()
356 ZipUtils.putUnsignedInt32(result, uncompressedSize); in outputRecordWithDeflateCompressedData()
DZipUtils.java279 static void putUnsignedInt32(ByteBuffer buffer, long value) { in putUnsignedInt32() method in ZipUtils