Lines Matching refs:Agent
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 =()
209 void Agent::PopulateFunctions() { in PopulateFunctions()
224 Agent::~Agent() { in ~Agent()
230 std::ostream& operator<<(std::ostream &os, const Agent* m) { in operator <<()
234 std::ostream& operator<<(std::ostream &os, Agent const& m) { in operator <<()