public final class NativeLibraryMapInfo
extends java.lang.Object
Each instance represents a single native library and its start and end memory addresses.
| Modifier and Type | Method and Description |
|---|---|
long |
getEndAddress()
Returns the end address of the library.
|
java.lang.String |
getLibraryName()
Returns the name of the library.
|
long |
getStartAddress()
Returns the start address of the library.
|
boolean |
isWithinLibrary(long address)
Returns whether the specified address is inside the library.
|
public java.lang.String getLibraryName()
public long getStartAddress()
public long getEndAddress()
public boolean isWithinLibrary(long address)
address - The address to test.true if the address is between the start and end address of the library.getStartAddress(),
getEndAddress()