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

  /art/runtime/jdwp/
jdwp_expand_buf.h 29 namespace JDWP {
66 } // namespace JDWP
jdwp_options_test.cc 17 #include "jdwp.h"
22 namespace JDWP {
29 JDWP::JdwpOptions opt = JDWP::JdwpOptions();
43 JDWP::JdwpOptions opt = JDWP::JdwpOptions();
58 JDWP::JdwpOptions opt = JDWP::JdwpOptions();
72 JDWP::JdwpOptions opt = JDWP::JdwpOptions()
    [all...]
jdwp_bits.h 29 namespace JDWP {
129 } // namespace JDWP
jdwp_expand_buf.cc 18 * primitive values, e.g. JDWP replies.
21 #include "jdwp/jdwp_expand_buf.h"
28 #include "jdwp/jdwp.h"
29 #include "jdwp/jdwp_bits.h"
33 namespace JDWP {
189 } // 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"
23 #include "jdwp/jdwp_priv.h"
27 namespace JDWP {
61 VLOG(jdwp) << " string \"" << s << "\"";
80 VLOG(jdwp) << " " << what << " " << value;
86 VLOG(jdwp) << " " << what << " " << value;
92 VLOG(jdwp) << " field id " << DescribeField(id);
98 VLOG(jdwp) << " method id " << DescribeMethod(id);
104 VLOG(jdwp) << android::base::StringPrintf(" %s id %#" PRIx64, specific_kind, id)
    [all...]
jdwp_socket.cc 32 #include "jdwp/jdwp_priv.h"
36 namespace JDWP {
42 * JDWP network state.
89 LOG(ERROR) << "JDWP net startup failed (req port=" << options->port << ")";
97 LOG(INFO) << "JDWP will wait for debugger on port " << port;
99 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port;
106 * Initialize JDWP stuff.
169 * Shut down JDWP listener. Don't free state.
171 * This may be called from a non-JDWP thread as part of shutting the
172 * JDWP thread down
    [all...]
jdwp_adb.cc 26 #include "jdwp/jdwp_priv.h"
34 * The JDWP <-> ADB transport protocol is explained in detail
37 * 1/ when the JDWP thread starts, it tries to connect to a Unix
38 * domain stream socket (@jdwp-control) that is opened by the
45 * a given JDWP debugger, that can be used to read the usual
46 * JDWP-handshake, etc...
49 static constexpr char kJdwpControlName[] = "\0jdwp-control";
62 namespace JDWP {
150 * runs in the main thread, before the JDWP thread starts, so it shouldn't
154 VLOG(jdwp) << "ADB transport startup"
    [all...]
jdwp.h 23 #include "jdwp/jdwp_bits.h"
24 #include "jdwp/jdwp_constants.h"
25 #include "jdwp/jdwp_expand_buf.h"
50 namespace JDWP {
84 * Holds a JDWP "location".
126 * State for JDWP functions.
151 * Returns the Thread* for the JDWP daemon thread.
162 // Acquires/releases the JDWP synchronization token for the debugger
169 // Acquires/releases the JDWP synchronization token for the event thread
187 * JDWP support thread) to be suspended
    [all...]
jdwp_main.cc 29 #include "jdwp/jdwp_priv.h"
34 namespace JDWP {
46 jdwp_options->transport = JDWP::kJdwpTransportSocket;
48 jdwp_options->transport = JDWP::kJdwpTransportAndroidAdb;
50 jdwp_options->transport = JDWP::kJdwpTransportUnknown;
51 LOG(ERROR) << "JDWP transport not supported: " << value;
60 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
69 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
84 LOG(ERROR) << "JDWP address missing port: " << value;
90 LOG(ERROR) << "JDWP address has junk in port field: " << value
    [all...]
jdwp_event.cc 17 #include "jdwp/jdwp_event.h"
30 #include "jdwp/jdwp_constants.h"
31 #include "jdwp/jdwp_expand_buf.h"
32 #include "jdwp/jdwp_priv.h"
33 #include "jdwp/object_registry.h"
48 Event posting can happen from any thread. The JDWP thread will not usually
49 post anything but VM start/death, but if a JDWP request causes a class
50 to be loaded, the ClassPrepare event will come from the JDWP thread.
73 JDWP thread:
94 holding the event token is very bad, because it prevents the JDWP threa
    [all...]
jdwp_handler.cc 31 #include "jdwp/jdwp_constants.h"
32 #include "jdwp/jdwp_event.h"
33 #include "jdwp/jdwp_expand_buf.h"
34 #include "jdwp/jdwp_priv.h"
41 namespace JDWP {
96 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
98 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%#" PRIx64 " %s.%s",
101 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
109 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width,
114 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/libmojo/third_party/catapult/devil/devil/android/sdk/
adb_wrapper.py 547 jdwp:<process pid> (remote only)
585 def JDWP(self, timeout=DEFAULT_TIMEOUT, retries=DEFAULT_RETRIES):
586 """List of PIDs of processes hosting a JDWP transport.
596 self._RunDeviceAdbCmd(['jdwp'], timeout, retries).split('\n')]
  /external/chromium-trace/catapult/devil/devil/android/sdk/
adb_wrapper.py 634 jdwp:<process pid> (remote only)
687 def JDWP(self, timeout=DEFAULT_TIMEOUT, retries=DEFAULT_RETRIES):
688 """List of PIDs of processes hosting a JDWP transport.
698 self._RunDeviceAdbCmd(['jdwp'], timeout, retries).split('\n')]
    [all...]

Completed in 426 milliseconds