Home
last modified time | relevance | path

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

/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DAndroidBinXmlParser.java304 long nsId = getUnsignedInt32(contents); in next()
305 long nameId = getUnsignedInt32(contents); in next()
348 long nsId = getUnsignedInt32(contents); in next()
349 long nameId = getUnsignedInt32(contents); in next()
386 long nsId = getUnsignedInt32(attr); in parseCurrentElementAttributesIfNotParsed()
387 long nameId = getUnsignedInt32(attr); in parseCurrentElementAttributesIfNotParsed()
390 long valueData = getUnsignedInt32(attr); in parseCurrentElementAttributesIfNotParsed()
543 long chunkSize = getUnsignedInt32(input); in get()
596 long stringCount = getUnsignedInt32(header); in StringPool()
601 long styleCount = getUnsignedInt32(header); in StringPool()
[all …]
/tools/apksig/src/main/java/com/android/apksig/internal/zip/
DCentralDirectoryRecord.java150 long crc32 = ZipUtils.getUnsignedInt32(buf); in getRecord()
151 long compressedSize = ZipUtils.getUnsignedInt32(buf); in getRecord()
152 long uncompressedSize = ZipUtils.getUnsignedInt32(buf); in getRecord()
157 long localFileHeaderOffset = ZipUtils.getUnsignedInt32(buf); in getRecord()
DZipUtils.java93 return getUnsignedInt32( in getZipEocdCentralDirectoryOffset()
105 return getUnsignedInt32( in getZipEocdCentralDirectorySizeBytes()
331 static long getUnsignedInt32(ByteBuffer buffer, int offset) { in getUnsignedInt32() method in ZipUtils
335 static long getUnsignedInt32(ByteBuffer buffer) { in getUnsignedInt32() method in ZipUtils
DLocalFileRecord.java189 long crc32 = ZipUtils.getUnsignedInt32(header, CRC32_OFFSET); in getRecord()
196 long compressedSize = ZipUtils.getUnsignedInt32(header, COMPRESSED_SIZE_OFFSET); in getRecord()
203 long uncompressedSize = ZipUtils.getUnsignedInt32(header, UNCOMPRESSED_SIZE_OFFSET); in getRecord()