Home
last modified time | relevance | path

Searched refs:JdwpOptions (Results 1 – 11 of 11) sorted by relevance

/art/runtime/jdwp/
Djdwp_options_test.cc29 JDWP::JdwpOptions opt = JDWP::JdwpOptions(); in TEST()
43 JDWP::JdwpOptions opt = JDWP::JdwpOptions(); in TEST()
58 JDWP::JdwpOptions opt = JDWP::JdwpOptions(); in TEST()
72 JDWP::JdwpOptions opt = JDWP::JdwpOptions(); in TEST()
Djdwp_priv.h67 bool InitSocketTransport(JdwpState*, const JdwpOptions*);
68 bool InitAdbTransport(JdwpState*, const JdwpOptions*);
79 virtual bool Establish(const JdwpOptions*) = 0;
Djdwp.h108 struct JdwpOptions { struct
116 bool operator==(const JdwpOptions& lhs, const JdwpOptions& rhs); argument
118 bool ParseJdwpOptions(const std::string& options, JdwpOptions* jdwp_options);
140 static JdwpState* Create(const JdwpOptions* options)
306 explicit JdwpState(const JdwpOptions* options);
362 const JdwpOptions* options_;
Djdwp_main.cc43 JdwpOptions* jdwp_options) { in ParseJdwpOption()
104 bool ParseJdwpOptions(const std::string& options, JdwpOptions* jdwp_options) { in ParseJdwpOptions()
328 JdwpState::JdwpState(const JdwpOptions* options) in JdwpState()
364 JdwpState* JdwpState::Create(const JdwpOptions* options) { in Create()
770 bool operator==(const JdwpOptions& lhs, const JdwpOptions& rhs) { in operator ==()
Djdwp_socket.cc58 bool Establish(const JdwpOptions*) override;
72 bool InitSocketTransport(JdwpState* state, const JdwpOptions* options) { in InitSocketTransport()
266 bool JdwpSocketState::Establish(const JdwpOptions* options) { in Establish()
Djdwp_adb.cc89 bool Establish(const JdwpOptions*) override { in Establish()
150 bool InitAdbTransport(JdwpState* state, const JdwpOptions*) { in InitAdbTransport() argument
/art/runtime/
Druntime_options.def46 RUNTIME_OPTIONS_KEY (std::string, JdwpOptions, "")
Druntime.cc1355 jdwp_options_ = runtime_options.GetOrDefault(Opt::JdwpOptions); in Init()
1377 if (runtime_options.Exists(Opt::JdwpOptions)) { in Init()
1378 JDWP::JdwpOptions ops; in Init()
1379 if (!JDWP::ParseJdwpOptions(runtime_options.GetOrDefault(Opt::JdwpOptions), &ops)) { in Init()
Dparsed_options.cc115 .IntoKey(M::JdwpOptions) in MakeParser()
Ddebugger.h269 static void ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options)
Ddebugger.cc303 static JDWP::JdwpOptions gJdwpOptions;
748 void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { in ConfigureJdwp()