NameDateSize

..01-Nov-20134 KiB

jdwp.h01-Nov-201313.3 KiB

jdwp_adb.cc01-Nov-201312.3 KiB

jdwp_bits.h01-Nov-20133.5 KiB

jdwp_constants.h01-Nov-20138.5 KiB

jdwp_event.cc01-Nov-201333.7 KiB

jdwp_event.h01-Nov-20132.7 KiB

jdwp_expand_buf.cc01-Nov-20134.5 KiB

jdwp_expand_buf.h01-Nov-20132.2 KiB

jdwp_handler.cc01-Nov-201359.1 KiB

jdwp_main.cc01-Nov-201317.6 KiB

jdwp_priv.h01-Nov-20132.3 KiB

jdwp_request.cc01-Nov-20134.2 KiB

jdwp_socket.cc01-Nov-201313.4 KiB

object_registry.cc01-Nov-20136.3 KiB

object_registry.h01-Nov-20133.8 KiB

README.txt01-Nov-2013601

README.txt

1Java Debug Wire Protocol support
2
3This is a reasonably complete implementation, but only messages that are
4actually generated by debuggers have been implemented.  The reasoning
5behind this is that it's better to leave a call unimplemented than have
6something that appears implemented but has never been tested.
7
8An attempt has been made to keep the JDWP implementation distinct from the
9runtime, so that the code might be useful in other projects. Once you get
10multiple simultaneous events and debugger requests with thread suspension
11bouncing around, though, it's difficult to keep things "generic".
12