Home | History | Annotate | only in /art/runtime/jdwp
Up to higher level directory
NameDateSize
jdwp.h21-Aug-201817.5K
jdwp_adb.cc21-Aug-201814K
jdwp_bits.h21-Aug-20183.8K
jdwp_constants.h21-Aug-20188.5K
jdwp_event.cc21-Aug-201844.9K
jdwp_event.h21-Aug-20182.7K
jdwp_expand_buf.cc21-Aug-20184.6K
jdwp_expand_buf.h21-Aug-20182.2K
jdwp_handler.cc21-Aug-201858.4K
jdwp_main.cc21-Aug-201822.6K
jdwp_options_test.cc21-Aug-20182.4K
jdwp_priv.h21-Aug-20183.5K
jdwp_request.cc21-Aug-20184.2K
jdwp_socket.cc21-Aug-201814.8K
object_registry.cc21-Aug-20189.2K
object_registry.h21-Aug-20184.8K
README.txt21-Aug-2018601

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 JDWP implementation distinct from the
      9 runtime, so that the code might be useful in other projects. Once you get
     10 multiple simultaneous events and debugger requests with thread suspension
     11 bouncing around, though, it's difficult to keep things "generic".
     12