Lines Matching refs:jdwp_options
43 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()
93 jdwp_options->port = port; in ParseJdwpOption()
104 bool ParseJdwpOptions(const std::string& options, JdwpOptions* jdwp_options) { in ParseJdwpOptions() argument
128 jdwp_options); in ParseJdwpOptions()
135 if (jdwp_options->transport == JDWP::kJdwpTransportUnknown) { in ParseJdwpOptions()
140 if (jdwp_options->transport == JDWP::kJdwpTransportNone) { in ParseJdwpOptions()
141 jdwp_options->transport = JDWP::kJdwpTransportAndroidAdb; in ParseJdwpOptions()
145 if (!jdwp_options->server && (jdwp_options->host.empty() || jdwp_options->port == 0)) { in ParseJdwpOptions()