Home
last modified time | relevance | path

Searched refs:getUnsignedInt16 (Results 1 – 5 of 5) sorted by relevance

/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DAndroidBinXmlParser.java306 int attrStartOffset = getUnsignedInt16(contents); in next()
307 int attrSizeBytes = getUnsignedInt16(contents); in next()
308 int attrCount = getUnsignedInt16(contents); in next()
541 int type = getUnsignedInt16(input); in get()
542 int headerSize = getUnsignedInt16(input); in get()
677 int lengthChars = getUnsignedInt16(encoded); in getLengthPrefixedUtf16EncodedString()
679 lengthChars = ((lengthChars & 0x7fff) << 16) | getUnsignedInt16(encoded); in getLengthPrefixedUtf16EncodedString()
843 private static int getUnsignedInt16(ByteBuffer buffer) { in getUnsignedInt16() method in AndroidBinXmlParser
/tools/apksig/src/main/java/com/android/apksig/internal/zip/
DCentralDirectoryRecord.java148 int lastModificationTime = ZipUtils.getUnsignedInt16(buf); in getRecord()
149 int lastModificationDate = ZipUtils.getUnsignedInt16(buf); in getRecord()
153 int nameSize = ZipUtils.getUnsignedInt16(buf); in getRecord()
154 int extraSize = ZipUtils.getUnsignedInt16(buf); in getRecord()
155 int commentSize = ZipUtils.getUnsignedInt16(buf); in getRecord()
DZipUtils.java118 return getUnsignedInt16( in getZipEocdCentralDirectoryTotalRecordCount()
245 getUnsignedInt16( in findZipEndOfCentralDirectoryRecord()
262 public static int getUnsignedInt16(ByteBuffer buffer, int offset) { in getUnsignedInt16() method in ZipUtils
266 public static int getUnsignedInt16(ByteBuffer buffer) { in getUnsignedInt16() method in ZipUtils
DLocalFileRecord.java211 int nameLength = ZipUtils.getUnsignedInt16(header, NAME_LENGTH_OFFSET); in getRecord()
224 int extraLength = ZipUtils.getUnsignedInt16(header, EXTRA_LENGTH_OFFSET); in getRecord()
/tools/apksig/src/main/java/com/android/apksig/
DApkSigner.java766 int dataSize = ZipUtils.getUnsignedInt16(extra); in getInputJarEntryDataAlignmentMultiple()
785 return ZipUtils.getUnsignedInt16(extra); in getInputJarEntryDataAlignmentMultiple()
810 int dataSize = ZipUtils.getUnsignedInt16(original); in createExtraFieldToAlignData()