Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.txt | D | 03-May-2024 | 601 | 12 | 9 | |
jdwp.h | D | 03-May-2024 | 17.5 KiB | 512 | 240 | |
jdwp_adb.cc | D | 03-May-2024 | 14 KiB | 488 | 309 | |
jdwp_bits.h | D | 03-May-2024 | 3.8 KiB | 134 | 92 | |
jdwp_constants.h | D | 03-May-2024 | 8.5 KiB | 250 | 176 | |
jdwp_event.cc | D | 03-May-2024 | 45 KiB | 1,379 | 863 | |
jdwp_event.h | D | 03-May-2024 | 2.7 KiB | 114 | 73 | |
jdwp_expand_buf.cc | D | 03-May-2024 | 4.6 KiB | 192 | 99 | |
jdwp_expand_buf.h | D | 03-May-2024 | 2.2 KiB | 71 | 24 | |
jdwp_handler.cc | D | 03-May-2024 | 58.4 KiB | 1,715 | 1,157 | |
jdwp_main.cc | D | 03-May-2024 | 22.6 KiB | 785 | 514 | |
jdwp_options_test.cc | D | 03-May-2024 | 2.4 KiB | 80 | 41 | |
jdwp_priv.h | D | 03-May-2024 | 3.5 KiB | 128 | 68 | |
jdwp_request.cc | D | 03-May-2024 | 4.2 KiB | 187 | 136 | |
jdwp_socket.cc | D | 03-May-2024 | 14.8 KiB | 535 | 336 | |
object_registry.cc | D | 03-May-2024 | 9.2 KiB | 288 | 217 | |
object_registry.h | D | 03-May-2024 | 4.8 KiB | 142 | 81 |
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