com.sun.cldchi.tools.memoryprofiler.jdwp |
|
Java Source File Name | Type | Comment |
BackEndTest.java | Class | The BackEndTest class implemtens common debugger features
such as:
- Connects to DebugAgent (either KdpProxy or Java), sends Handshake
command and waits for VM_INIT event.
|
BoundException.java | Class | This exception is raised by methods of Packet and its subclasses
when JDWP packet is malformed and we try to read some data but see end of
packet (for example, if we try to read int value from packet by
ByteBuffer.getInt() but there is no more data in packet). |
ByteBuffer.java | Class | This class encapsulates dynamic linear byte array that is handled
as stream. |
Command.java | Class | This class encapsulates JDWP command. |
DebugeeException.java | Class | This exception is raised in case of generic debugger error. |
jdwp.java | Class | This class contains JDWP constants and parameters. |
Packet.java | Class | This class encapsulates JDWP packet. |
Reply.java | Class | This class represents a JDWP reply packet. |
SocketTransport.java | Class | This class represents a socket transport for JDWP. |
SocketTransportImpl.java | Class | This class implements JDWP socket connection and works in the
background thread. |
Tools.java | Class | This class contains some auxillary functions that are used by
classes of jdwp package. |
Transport.java | Class | This abstract class represents a generic transport for JDWP. |
VMConnection.java | Interface | The VMConnection declares interface between transport
layer and data providing layer of the memory profiler. |
VMConnectionFactory.java | Class | The VMConnectionFactory provides default implementation of VMConnection . |
VMReply.java | Interface | The VMReply declares interface between transport
layer and data providing layer of the memory profiler. |