Class ProgramByteSource
java.lang.Object
ghidra.features.base.memsearch.bytesource.ProgramByteSource
- All Implemented Interfaces:
AddressableByteSource
AddressableByteSource
implementation for a Ghidra Program
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Retrieves the byte values for an address range.Returns a list of memory regions where each region has an associated address set of valid addresses that can be read.void
Invalidates any caching of byte values.
-
Constructor Details
-
ProgramByteSource
-
-
Method Details
-
getBytes
Description copied from interface:AddressableByteSource
Retrieves the byte values for an address range.- Specified by:
getBytes
in interfaceAddressableByteSource
- Parameters:
address
- The address of the first byte in the rangebytes
- the byte array to store the retrieved byte valueslength
- the number of bytes to retrieve- Returns:
- the number of bytes actually retrieved
-
getSearchableRegions
Description copied from interface:AddressableByteSource
Returns a list of memory regions where each region has an associated address set of valid addresses that can be read.- Specified by:
getSearchableRegions
in interfaceAddressableByteSource
- Returns:
- a list of readable regions
-
invalidate
public void invalidate()Description copied from interface:AddressableByteSource
Invalidates any caching of byte values. This intended to provide a hint in debugging scenario that we are about to issue a sequence of byte value requests where we are re-acquiring previous requested byte values to look for changes.- Specified by:
invalidate
in interfaceAddressableByteSource
-