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

..--

README.txtD22-Nov-2023601 129

jdwp.hD22-Nov-202317.3 KiB508237

jdwp_adb.ccD22-Nov-202314 KiB494313

jdwp_bits.hD22-Nov-20233.8 KiB13492

jdwp_constants.hD22-Nov-20238.5 KiB250176

jdwp_event.ccD22-Nov-202344.9 KiB1,379863

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-202358.3 KiB1,7151,158

jdwp_main.ccD22-Nov-202318.8 KiB672415

jdwp_priv.hD22-Nov-20233.5 KiB12868

jdwp_request.ccD22-Nov-20234.2 KiB187136

jdwp_socket.ccD22-Nov-202314.8 KiB535336

object_registry.ccD22-Nov-20239.2 KiB288217

object_registry.hD22-Nov-20234.8 KiB14281

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