modifiedmethod:
getBytes
added throws IndexOutOfBoundsException
- int getBytes(long offset, byte[] b, int off, int len) throws MemoryAccessException
+ int getBytes(long offset, byte[] b, int off, int len) throws IndexOutOfBoundsException, MemoryAccessException
modifiedmethod:
getBytes
added throws IndexOutOfBoundsException
- int getBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int len) throws MemoryAccessException
+ int getBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int len) throws IndexOutOfBoundsException, MemoryAccessException
modifiedmethod:
putBytes
added throws IndexOutOfBoundsException
- int putBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int len) throws MemoryAccessException
+ int putBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int len) throws IndexOutOfBoundsException, MemoryAccessException
addedmethod:
getSourceInfos
java.util.List<ghidra.program.model.mem.MemoryBlockSourceInfo> getSourceInfos()
addedmethod:
setPermissions
void setPermissions(boolean read, boolean write, boolean execute)
modifiedmethod:
compareTo
param 1 renamed: block → o
- int compareTo(ghidra.program.model.mem.MemoryBlock block)
+ int compareTo(ghidra.program.model.mem.MemoryBlock o)
modifiedmethod:
getByte
added throws MemoryAccessException; removed throws IOException
- byte getByte(long offset) throws IOException
+ byte getByte(long offset) throws MemoryAccessException
modifiedmethod:
getBytes
param 4 renamed: size → len; added throws MemoryAccessException; removed throws IOException
- int getBytes(long offset, byte[] b, int off, int size) throws IOException
+ int getBytes(long offset, byte[] b, int off, int len) throws MemoryAccessException
modifiedmethod:
getBytes
param 4 renamed: size → len
- int getBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int size) throws MemoryAccessException
+ int getBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int len) throws MemoryAccessException
modifiedmethod:
putBytes
param 4 renamed: size → len
- int putBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int size) throws MemoryAccessException
+ int putBytes(ghidra.program.model.address.Address addr, byte[] b, int off, int len) throws MemoryAccessException