Home
last modified time | relevance | path

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

/art/runtime/ti/
Dagent.h30 class Agent; variable
54 std::unique_ptr<Agent> Load(/*out*/jint* call_res,
59 std::unique_ptr<Agent> Attach(JNIEnv* env,
66 std::unique_ptr<Agent> DoDlOpen(JNIEnv* env,
71 std::unique_ptr<Agent> DoLoadHelper(JNIEnv* env,
97 class Agent {
108 Agent(Agent&& other);
109 Agent& operator=(Agent&& other);
111 ~Agent();
114 Agent(const std::string& name, void* dlopen_handle) : name_(name), in Agent() function
[all …]
Dagent.cc48 std::unique_ptr<Agent> AgentSpec::Load(/*out*/jint* call_res, in Load()
56 std::unique_ptr<Agent> AgentSpec::Attach(JNIEnv* env, in Attach()
67 std::unique_ptr<Agent> AgentSpec::DoLoadHelper(JNIEnv* env, in DoLoadHelper()
77 std::unique_ptr<Agent> agent = DoDlOpen(env, class_loader, error, error_msg); in DoLoadHelper()
108 std::unique_ptr<Agent> AgentSpec::DoDlOpen(JNIEnv* env, in DoDlOpen()
143 std::unique_ptr<Agent> agent(new Agent(name_, dlopen_handle)); in DoDlOpen()
154 void* Agent::FindSymbol(const std::string& name) const { in FindSymbol()
160 void Agent::Unload() { in Unload()
177 Agent::Agent(Agent&& other) in Agent() function in art::ti::Agent
185 Agent& Agent::operator=(Agent&& other) { 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.h72 class Agent; variable
734 const std::list<std::unique_ptr<ti::Agent>>& GetAgents() const { in GetAgents()
854 std::list<std::unique_ptr<ti::Agent>> agents_;
Djava_vm_ext.cc1058 for (const std::unique_ptr<ti::Agent>& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()
Druntime.cc1589 std::unique_ptr<ti::Agent> agent = agent_spec.Load(&res, &error, &err); in Init()
1677 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()