• Home
Name Date Size #Lines LOC

..--

ExpandBuf.cppD03-May-20243.8 KiB17688

ExpandBuf.hD03-May-20241.9 KiB5715

Jdwp.hD03-May-20247.8 KiB23781

JdwpAdb.cppD03-May-202421.1 KiB747471

JdwpConstants.cppD03-May-20248.3 KiB261206

JdwpConstants.hD03-May-20247.9 KiB231162

JdwpEvent.cppD03-May-202438.6 KiB1,279713

JdwpEvent.hD03-May-20243.4 KiB13072

JdwpHandler.cppD03-May-202460.4 KiB1,9741,190

JdwpHandler.hD03-May-20241.3 KiB4814

JdwpMain.cppD03-May-202412.9 KiB450222

JdwpPriv.hD03-May-20245.3 KiB193108

JdwpSocket.cppD03-May-202424.4 KiB911584

README.txtD03-May-2024647 1310

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 implementation distinct from the VM,
9with Debugger.c acting as a sort of portability layer, so that the code
10might be useful in other projects.  Once you get multiple simultaneous
11events and debugger requests with thread suspension bouncing around,
12though, it's difficult to keep things "generic".
13