Home
last modified time | relevance | path

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

/art/runtime/ti/
Dagent.h31 class Agent; variable
55 std::unique_ptr<Agent> Load(/*out*/jint* call_res,
60 std::unique_ptr<Agent> Attach(JNIEnv* env,
67 std::unique_ptr<Agent> DoDlOpen(JNIEnv* env,
72 std::unique_ptr<Agent> DoLoadHelper(JNIEnv* env,
98 class Agent {
109 Agent(Agent&& other) noexcept;
110 Agent& operator=(Agent&& other) noexcept;
112 ~Agent();
115 Agent(const std::string& name, void* dlopen_handle) : name_(name), in Agent() function
[all …]
Dagent.cc49 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()
78 std::unique_ptr<Agent> agent = DoDlOpen(env, class_loader, error, error_msg); in DoLoadHelper()
109 std::unique_ptr<Agent> AgentSpec::DoDlOpen(JNIEnv* env, in DoDlOpen()
149 std::unique_ptr<Agent> agent(new Agent(name_, dlopen_handle)); in DoDlOpen()
160 void* Agent::FindSymbol(const std::string& name) const { in FindSymbol()
166 void Agent::Unload() { in Unload()
183 Agent::Agent(Agent&& other) noexcept in Agent() function in art::ti::Agent
191 Agent& Agent::operator=(Agent&& other) noexcept { in operator =()
[all …]
/art/test/909-attach-agent/
Dexpected.txt3 Attached Agent for test 909-attach-agent
5 Attached Agent for test 909-attach-agent
10 Attached Agent for test 909-attach-agent
12 Attached Agent for test 909-attach-agent
17 Attached Agent for test 909-attach-agent
20 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.h78 class Agent; variable
863 const std::list<std::unique_ptr<ti::Agent>>& GetAgents() const { in GetAgents()
1069 std::list<std::unique_ptr<ti::Agent>> agents_;
Druntime.cc1758 std::unique_ptr<ti::Agent> agent = agent_spec.Load(&res, &error, &err); in Init()
1860 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
/art/runtime/jni/
Djava_vm_ext.cc1116 for (const std::unique_ptr<ti::Agent>& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()