Home | History | Annotate | only in /dalvik/vm/jdwp
Up to higher level directory
NameDateSize
ExpandBuf.cpp09-Oct-20133.8K
ExpandBuf.h09-Oct-20131.9K
Jdwp.h09-Oct-20137.8K
JdwpAdb.cpp09-Oct-201321.1K
JdwpConstants.cpp09-Oct-20138.3K
JdwpConstants.h09-Oct-20137.9K
JdwpEvent.cpp09-Oct-201338.6K
JdwpEvent.h09-Oct-20133.4K
JdwpHandler.cpp09-Oct-201360.4K
JdwpHandler.h09-Oct-20131.3K
JdwpMain.cpp09-Oct-201312.9K
JdwpPriv.h09-Oct-20135.3K
JdwpSocket.cpp09-Oct-201324.4K
README.txt09-Oct-2013647

README.txt

      1 Java Debug Wire Protocol support
      2 
      3 This is a reasonably complete implementation, but only messages that are
      4 actually generated by debuggers have been implemented.  The reasoning
      5 behind this is that it's better to leave a call unimplemented than have
      6 something that appears implemented but has never been tested.
      7 
      8 An attempt has been made to keep the implementation distinct from the VM,
      9 with Debugger.c acting as a sort of portability layer, so that the code
     10 might be useful in other projects.  Once you get multiple simultaneous
     11 events and debugger requests with thread suspension bouncing around,
     12 though, it's difficult to keep things "generic".
     13