Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_main.cc43 JdwpOptions* jdwp_options) { in ParseJdwpOption() argument
46 jdwp_options->transport = JDWP::kJdwpTransportSocket; in ParseJdwpOption()
48 jdwp_options->transport = JDWP::kJdwpTransportAndroidAdb; in ParseJdwpOption()
50 jdwp_options->transport = JDWP::kJdwpTransportUnknown; in ParseJdwpOption()
56 jdwp_options->server = false; in ParseJdwpOption()
58 jdwp_options->server = true; in ParseJdwpOption()
65 jdwp_options->suspend = false; in ParseJdwpOption()
67 jdwp_options->suspend = true; in ParseJdwpOption()
75 jdwp_options->host.clear(); in ParseJdwpOption()
78 jdwp_options->host = value.substr(0, colon); in ParseJdwpOption()
[all …]
Djdwp.h118 bool ParseJdwpOptions(const std::string& options, JdwpOptions* jdwp_options);
/art/runtime/
Ddebugger.h269 static void ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options)
Ddebugger.cc748 void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { in ConfigureJdwp() argument
749 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); in ConfigureJdwp()
750 gJdwpOptions = jdwp_options; in ConfigureJdwp()