Home
last modified time | relevance | path

Searched refs:Agent (Results 1 – 10 of 10) sorted by relevance

/art/runtime/ti/
Dagent.h39 class Agent {
80 explicit Agent(std::string arg);
82 Agent(const Agent& other);
83 Agent& operator=(const Agent& other);
85 Agent(Agent&& other);
86 Agent& operator=(Agent&& other);
88 ~Agent();
106 friend std::ostream& operator<<(std::ostream &os, Agent const& m);
109 std::ostream& operator<<(std::ostream &os, Agent const& m);
110 std::ostream& operator<<(std::ostream &os, const Agent* m);
Dagent.cc35 Agent::LoadError Agent::DoLoadHelper(bool attaching, in DoLoadHelper()
76 void* Agent::FindSymbol(const std::string& name) const { in FindSymbol()
81 Agent::LoadError Agent::DoDlOpen(/*out*/std::string* error_msg) { in DoDlOpen()
111 void Agent::Unload() { in Unload()
126 Agent::Agent(std::string arg) in Agent() function in art::ti::Agent
140 Agent::Agent(const Agent& other) in Agent() function in art::ti::Agent
149 Agent& Agent::operator=(const Agent& other) { in operator =()
178 Agent::Agent(Agent&& other) in Agent() function in art::ti::Agent
186 Agent& Agent::operator=(Agent&& other) { in operator =()
205 Agent::~Agent() { in ~Agent()
[all …]
/art/test/909-attach-agent/
Dexpected.txt2 Attached Agent for test 909-attach-agent
5 Attached Agent for test 909-attach-agent
/art/test/901-hello-ti-agent/
Dexpected.txt1 Loaded Agent for test 901-hello-ti-agent
5 Agent in live phase.
/art/runtime/
Druntime_options.def126 RUNTIME_OPTIONS_KEY (std::list<ti::Agent>, AgentLib) // -agentlib:<libname>=<options>
127 RUNTIME_OPTIONS_KEY (std::list<ti::Agent>, AgentPath) // -agentpath:<libname>=<options>
Druntime.h66 class Agent; variable
649 const std::list<ti::Agent>& GetAgents() const { in GetAgents()
754 std::list<ti::Agent> agents_;
Druntime.cc1461 ti::Agent::LoadError result = agent.Load(&res, &err); in Init()
1462 if (result == ti::Agent::kInitializationError) { in Init()
1464 } else if (result != ti::Agent::kNoError) { in Init()
1521 ti::Agent agent(agent_arg); in AttachAgent()
1524 ti::Agent::LoadError result = agent.Attach(&res, &error_msg); in AttachAgent()
1526 if (result == ti::Agent::kNoError) { in AttachAgent()
Dparsed_options.cc100 .WithType<std::list<ti::Agent>>().AppendValues() in MakeParser()
Djava_vm_ext.cc965 for (const ti::Agent& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()
/art/cmdline/
Dcmdline_types.h406 struct CmdlineType<std::list<ti::Agent>> : CmdlineTypeParser<std::list<ti::Agent>> {
413 std::list<ti::Agent>& existing_value) {