• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

README.txtD22-Nov-2023601 129

jdwp.hD22-Nov-202317.1 KiB508241

jdwp_adb.ccD22-Nov-202312.3 KiB446273

jdwp_bits.hD22-Nov-20233.5 KiB12584

jdwp_constants.hD22-Nov-20238.5 KiB250176

jdwp_event.ccD22-Nov-202343.5 KiB1,338830

jdwp_event.hD22-Nov-20232.7 KiB11473

jdwp_expand_buf.ccD22-Nov-20234.5 KiB18997

jdwp_expand_buf.hD22-Nov-20232.2 KiB7124

jdwp_handler.ccD22-Nov-202357.7 KiB1,6821,130

jdwp_main.ccD22-Nov-202318.6 KiB663408

jdwp_priv.hD22-Nov-20233.4 KiB12666

jdwp_request.ccD22-Nov-20234.2 KiB186136

jdwp_socket.ccD22-Nov-202313.5 KiB503321

object_registry.ccD22-Nov-20239 KiB279209

object_registry.hD22-Nov-20234.9 KiB14786

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