HomeSort by relevance Sort by last modified time
    Searched defs:JDWP (Results 1 - 15 of 15) sorted by null

  /art/runtime/jdwp/
jdwp_expand_buf.h 29 namespace JDWP {
66 } // namespace JDWP
jdwp_bits.h 29 namespace JDWP {
120 } // namespace JDWP
jdwp_expand_buf.cc 18 * primitive values, e.g. JDWP replies.
21 #include "jdwp/jdwp_expand_buf.h"
27 #include "jdwp/jdwp.h"
28 #include "jdwp/jdwp_bits.h"
32 namespace JDWP {
186 } // namespace JDWP
jdwp_event.h 22 #include "jdwp/jdwp.h"
23 #include "jdwp/jdwp_constants.h"
24 #include "jdwp/jdwp_expand_buf.h"
28 namespace JDWP {
109 } // namespace JDWP
jdwp_priv.h 17 * JDWP internal interfaces.
23 #include "jdwp/jdwp.h"
24 #include "jdwp/jdwp_event.h"
30 * JDWP constants.
41 static constexpr const char kMagicHandshake[] = "JDWP-Handshake";
63 namespace JDWP {
119 // Are we waiting for the JDWP handshake?
123 } // namespace JDWP
jdwp_request.cc 17 #include "jdwp/jdwp.h"
22 #include "jdwp/jdwp_priv.h"
26 namespace JDWP {
60 VLOG(jdwp) << " string \"" << s << "\"";
79 VLOG(jdwp) << " " << what << " " << value;
85 VLOG(jdwp) << " " << what << " " << value;
91 VLOG(jdwp) << " field id " << DescribeField(id);
97 VLOG(jdwp) << " method id " << DescribeMethod(id);
103 VLOG(jdwp) << StringPrintf(" %s id %#" PRIx64, specific_kind, id)
    [all...]
jdwp_socket.cc 31 #include "jdwp/jdwp_priv.h"
35 namespace JDWP {
41 * JDWP network state.
88 LOG(ERROR) << "JDWP net startup failed (req port=" << options->port << ")";
96 LOG(INFO) << "JDWP will wait for debugger on port " << port;
98 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port;
105 * Initialize JDWP stuff.
166 * Shut down JDWP listener. Don't free state.
168 * This may be called from a non-JDWP thread as part of shutting the
169 * JDWP thread down
    [all...]
jdwp_adb.cc 25 #include "jdwp/jdwp_priv.h"
32 * The JDWP <-> ADB transport protocol is explained in detail
35 * 1/ when the JDWP thread starts, it tries to connect to a Unix
36 * domain stream socket (@jdwp-control) that is opened by the
44 * a given JDWP debugger, that can be used to read the usual
45 * JDWP-handshake, etc...
48 #define kJdwpControlName "\0jdwp-control"
53 namespace JDWP {
120 * runs in the main thread, before the JDWP thread starts, so it shouldn't
124 VLOG(jdwp) << "ADB transport startup"
    [all...]
jdwp_main.cc 27 #include "jdwp/jdwp_priv.h"
32 namespace JDWP {
70 VLOG(jdwp) << "+++ writing to wake pipe";
113 // Only called from the JDWP thread.
119 VLOG(jdwp) << "+++ closing JDWP connection on fd " << clientSock;
159 VLOG(jdwp) << "Not sending JDWP packet: no debugger attached!";
171 PLOG(ERROR) << StringPrintf("Failed to send JDWP packet %c%c%c%c to debugger (%zd of %zu)",
183 VLOG(jdwp) << "Not sending JDWP packet: no debugger attached!"
    [all...]
jdwp.h 22 #include "jdwp/jdwp_bits.h"
23 #include "jdwp/jdwp_constants.h"
24 #include "jdwp/jdwp_expand_buf.h"
48 namespace JDWP {
82 * Holds a JDWP "location".
121 * State for JDWP functions.
146 * Returns the Thread* for the JDWP daemon thread.
157 // Acquires/releases the JDWP synchronization token for the debugger
164 // Acquires/releases the JDWP synchronization token for the event thread
182 * JDWP support thread) to be suspended
    [all...]
jdwp_event.cc 17 #include "jdwp/jdwp_event.h"
29 #include "jdwp/jdwp_constants.h"
30 #include "jdwp/jdwp_expand_buf.h"
31 #include "jdwp/jdwp_priv.h"
32 #include "jdwp/object_registry.h"
47 Event posting can happen from any thread. The JDWP thread will not usually
48 post anything but VM start/death, but if a JDWP request causes a class
49 to be loaded, the ClassPrepare event will come from the JDWP thread.
72 JDWP thread:
93 holding the event token is very bad, because it prevents the JDWP threa
    [all...]
jdwp_handler.cc 29 #include "jdwp/jdwp_constants.h"
30 #include "jdwp/jdwp_event.h"
31 #include "jdwp/jdwp_expand_buf.h"
32 #include "jdwp/jdwp_priv.h"
40 namespace JDWP {
93 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
95 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%#" PRIx64 " %s.%s",
98 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
106 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width,
111 VLOG(jdwp) << StringPrintf(" options=0x%04x%s%s", options
    [all...]
jdwp_constants.h 17 * These come out of the JDWP documentation.
26 namespace JDWP {
130 EK_VM_DISCONNECTED = 100, // "Never sent across JDWP".
245 } // namespace JDWP
  /system/core/adb/
adb_trace.h 36 JDWP, /* 0x100 */
  /external/chromium-trace/catapult/devil/devil/android/sdk/
adb_wrapper.py 603 jdwp:<process pid> (remote only)
641 def JDWP(self, timeout=DEFAULT_TIMEOUT, retries=DEFAULT_RETRIES):
642 """List of PIDs of processes hosting a JDWP transport.
652 self._RunDeviceAdbCmd(['jdwp'], timeout, retries).split('\n')]

Completed in 668 milliseconds