Home
last modified time | relevance | path

Searched refs:AgentSpec (Results 1 – 7 of 7) sorted by relevance

/art/runtime/ti/
Dagent.h39 class AgentSpec {
41 explicit AgentSpec(const std::string& arg);
82 friend std::ostream& operator<<(std::ostream &os, AgentSpec const& m);
85 std::ostream& operator<<(std::ostream &os, AgentSpec const& m);
133 friend class AgentSpec; variable
Dagent.cc39 AgentSpec::AgentSpec(const std::string& arg) { in AgentSpec() function in art::ti::AgentSpec
49 std::unique_ptr<Agent> AgentSpec::Load(/*out*/jint* call_res, in Load()
57 std::unique_ptr<Agent> AgentSpec::Attach(JNIEnv* env, in Attach()
68 std::unique_ptr<Agent> AgentSpec::DoLoadHelper(JNIEnv* env, in DoLoadHelper()
109 std::unique_ptr<Agent> AgentSpec::DoDlOpen(JNIEnv* env, in DoDlOpen()
155 std::ostream& operator<<(std::ostream &os, AgentSpec const& m) { in operator <<()
/art/cmdline/
Dcmdline_types.h345 struct CmdlineType<std::list<ti::AgentSpec>> : CmdlineTypeParser<std::list<ti::AgentSpec>> {
352 std::list<ti::AgentSpec>& existing_value) {
/art/runtime/
Druntime_options.def140 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentLib) // -agentlib:<libname>=<options>
141 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentPath) // -agentpath:<libname>=<options>
Druntime.h79 class AgentSpec; variable
1068 std::list<ti::AgentSpec> agent_specs_;
Dparsed_options.cc108 .WithType<std::list<ti::AgentSpec>>().AppendValues() in MakeParser()
Druntime.cc1856 ti::AgentSpec agent_spec(agent_arg); in AttachAgent()