• Home
Name Date Size #Lines LOC

..--

ExpandBuf.cD03-May-20243.8 KiB17688

ExpandBuf.hD03-May-20241.9 KiB5816

Jdwp.hD03-May-20248 KiB23982

JdwpAdb.cD03-May-202421.6 KiB762472

JdwpConstants.cD03-May-20247.6 KiB240189

JdwpConstants.hD03-May-20247.9 KiB230161

JdwpEvent.cD03-May-202437.9 KiB1,293722

JdwpEvent.hD03-May-20243.5 KiB13072

JdwpHandler.cD03-May-202463.7 KiB2,2241,374

JdwpHandler.hD03-May-20241.3 KiB4814

JdwpMain.cD03-May-202412.1 KiB416201

JdwpPriv.hD03-May-20245 KiB180100

JdwpSocket.cD03-May-202425.2 KiB925587

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