Package org.jf.dexlib2.dexbacked
Class DexBuffer
- java.lang.Object
-
- org.jf.dexlib2.dexbacked.DexBuffer
-
- Direct Known Subclasses:
OatFile
public class DexBuffer extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBaseOffset()byte[]getBuf()intreadByte(int offset)byte[]readByteRange(int start, int length)DexReader<? extends DexBuffer>readerAt(int offset)intreadInt(int offset)longreadLong(int offset)intreadLongAsSmallUint(int offset)intreadOptionalUint(int offset)intreadShort(int offset)intreadSmallUint(int offset)intreadUbyte(int offset)intreadUshort(int offset)
-
-
-
Method Detail
-
readSmallUint
public int readSmallUint(int offset)
-
readOptionalUint
public int readOptionalUint(int offset)
-
readUshort
public int readUshort(int offset)
-
readUbyte
public int readUbyte(int offset)
-
readLong
public long readLong(int offset)
-
readLongAsSmallUint
public int readLongAsSmallUint(int offset)
-
readInt
public int readInt(int offset)
-
readShort
public int readShort(int offset)
-
readByte
public int readByte(int offset)
-
readByteRange
@Nonnull public byte[] readByteRange(int start, int length)
-
getBuf
@Nonnull public byte[] getBuf()
-
getBaseOffset
public int getBaseOffset()
-
-