Uses of Class
com.ibm.dtfj.corereaders.MemoryAccessException
-
Packages that use MemoryAccessException Package Description com.ibm.dtfj.addressspace com.ibm.dtfj.corereaders com.ibm.dtfj.corereaders.j9 -
-
Uses of MemoryAccessException in com.ibm.dtfj.addressspace
Methods in com.ibm.dtfj.addressspace that throw MemoryAccessException Modifier and Type Method Description protected MemoryRange
CommonAddressSpace. _residentRange(int asid, long address)
byte
IAbstractAddressSpace. getByteAt(int asid, long address)
int
IAbstractAddressSpace. getBytesAt(int asid, long address, byte[] buffer)
int
IAbstractAddressSpace. getIntAt(int asid, long address)
long
IAbstractAddressSpace. getLongAt(int asid, long address)
long
IAbstractAddressSpace. getPointerAt(int asid, long address)
short
IAbstractAddressSpace. getShortAt(int asid, long address)
boolean
IAbstractAddressSpace. isExecutable(int asid, long address)
boolean
IAbstractAddressSpace. isReadOnly(int asid, long address)
boolean
IAbstractAddressSpace. isShared(int asid, long address)
-
Uses of MemoryAccessException in com.ibm.dtfj.corereaders
Methods in com.ibm.dtfj.corereaders that throw MemoryAccessException Modifier and Type Method Description byte
Dump. getByteAt(int asid, long address)
protected Properties
NewWinDump. getEnvironmentVariables(Builder builder)
int
Dump. getIntAt(int asid, long address)
long
Dump. getLongAt(int asid, long address)
protected long
J9RASReader. getProcessID()
Get the ID of the process which caused the core file to be producedshort
Dump. getShortAt(int asid, long address)
protected long
J9RASReader. getThreadID()
Get ID of the thread which caused the core file to be producedboolean
Dump. isExecutable(int asid, long address)
boolean
MemoryRange. isExecutable()
boolean
Dump. isReadOnly(int asid, long address)
boolean
MemoryRange. isReadOnly()
boolean
Dump. isShared(int asid, long address)
boolean
MemoryRange. isShared()
-
Uses of MemoryAccessException in com.ibm.dtfj.corereaders.j9
Methods in com.ibm.dtfj.corereaders.j9 that throw MemoryAccessException Modifier and Type Method Description byte
Memory. getByteAt(long address)
Read a byte from the specified addressint
Memory. getBytesAt(long address, byte[] buffer)
Read a byte from the specified addressint
Memory. getIntAt(long address)
Read an int from the specified addresslong
Memory. getLongAt(long address)
Read a long from the specified addresslong
Memory. getPointerAt(long address)
Read a pointer at the specified addressshort
Memory. getShortAt(long address)
Read a short from the specified addressboolean
Memory. isExecutable(long address)
Flag for executable memoryboolean
Memory. isReadOnly(long address)
Flag to indicate if the memory is read onlyboolean
Memory. isShared(long address)
Flag to indicate if the memory is sharedConstructors in com.ibm.dtfj.corereaders.j9 that throw MemoryAccessException Constructor Description J9RAS(Memory memory, long address)
J9RASFragmentJ5SR10(Memory memory, long address, boolean is64bit)
Create a Java 5 SR10, version 1 J9RAS fragmentJ9RASFragmentJ5v2(Memory memory, long address, boolean is64bit)
Create a Java 5, version 2 J9RAS fragmentJ9RASFragmentJ6SR6(Memory memory, long address, boolean is64bit)
Create a Java 6 SR 5, version 1 J9RAS fragmentJ9RASFragmentJ6v2(Memory memory, long address, boolean is64bit)
Create a Java 6, version 2 J9RAS fragmentJ9RASFragmentJ6v3(Memory memory, long address, boolean is64bit)
Create a Java 6/7, version 3 J9RAS fragment
-