Home
last modified time | relevance | path

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

/art/tools/jvmti-agents/titrace/
DREADME.md44 #### Attach agent to application
46 ##### Option 1: Attach the agent before any app code runs.
53 ##### Option 2: Attach the agent to an already-running app.
/art/runtime/ti/
Dagent.h62 std::unique_ptr<Agent> Attach(JNIEnv* env,
Dagent.cc57 std::unique_ptr<Agent> AgentSpec::Attach(JNIEnv* env, in Attach() function in art::ti::AgentSpec
/art/dt_fd_forward/
DREADME.md7 for Attach. This transport requires an address. The address is a single integer
Ddt_fd_forward.cc704 static jdwpTransportError Attach(jdwpTransportEnv* env, in Attach() function in dt_fd_forward::JdwpTransportFunctions
776 JdwpTransportFunctions::Attach,
/art/runtime/
Dthread.h273 static Thread* Attach(const char* thread_name,
279 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer);
1654 static Thread* Attach(const char* thread_name,
Dthread.cc1006 Thread* Thread::Attach(const char* thread_name, in Attach() function in art::Thread
1067 Thread* Thread::Attach(const char* thread_name, in Attach() function in art::Thread
1104 return Attach(thread_name, as_daemon, create_peer_action, should_run_callbacks); in Attach()
1107 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() function in art::Thread
1117 return Attach(thread_name, as_daemon, set_peer_action, /* should_run_callbacks= */ true); in Attach()
Druntime.cc1944 Thread* self = Thread::Attach("main", false, nullptr, false, /* should_run_callbacks= */ true); in Init()
2281 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
2564 Thread* self = Thread::Attach(thread_name, in AttachCurrentThread()
/art/adbconnection/
Dadbconnection.cc313 art::Thread* self = art::Thread::Attach(kAdbConnectionThreadName, true, data->thr_); in CallbackFunction()
/art/openjdkjvmti/
Dti_thread.cc785 art::Thread* self = art::Thread::Attach(data->name.c_str(), true, data->thread); in AgentCallback()