Searched refs:Agent (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ti/ |
D | agent.h | 31 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 …]
|
D | agent.cc | 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() 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/ |
D | expected.txt | 3 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/ |
D | expected.txt | 1 Loaded Agent for test 901-hello-ti-agent 5 Agent in live phase.
|
/art/runtime/ |
D | runtime.h | 78 class Agent; variable 867 const std::list<std::unique_ptr<ti::Agent>>& GetAgents() const { in GetAgents() 1073 std::list<std::unique_ptr<ti::Agent>> agents_;
|
D | runtime.cc | 1764 std::unique_ptr<ti::Agent> agent = agent_spec.Load(&res, &error, &err); in Init() 1866 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 1114 for (const std::unique_ptr<ti::Agent>& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()
|