Home
last modified time | relevance | path

Searched refs:jdwp_options (Results 1 – 3 of 3) sorted by relevance

/art/cmdline/
Dcmdline_types.h91 JDWP::JdwpOptions jdwp_options;
102 &jdwp_options);
109 if (jdwp_options.transport == JDWP::kJdwpTransportUnknown) {
112 if (!jdwp_options.server && (jdwp_options.host.empty() || jdwp_options.port == 0)) {
116 return Result::Success(std::move(jdwp_options));
120 JDWP::JdwpOptions* jdwp_options) {
123 jdwp_options->transport = JDWP::kJdwpTransportSocket;
125 jdwp_options->transport = JDWP::kJdwpTransportAndroidAdb;
131 jdwp_options->server = false;
133 jdwp_options->server = true;
[all …]
/art/runtime/
Ddebugger.h251 static void ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options);
Ddebugger.cc751 void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { in ConfigureJdwp() argument
752 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); in ConfigureJdwp()
753 gJdwpOptions = jdwp_options; in ConfigureJdwp()