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.h60 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.cc685 static jdwpTransportError Attach(jdwpTransportEnv* env, in Attach() function in dt_fd_forward::JdwpTransportFunctions
757 JdwpTransportFunctions::Attach,
/art/runtime/
Dthread.h182 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group,
185 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer);
1355 static Thread* Attach(const char* thread_name,
Dthread.cc975 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) { in Attach() function in art::Thread
1033 Thread* Thread::Attach(const char* thread_name, in Attach() function in art::Thread
1066 return Attach(thread_name, as_daemon, create_peer_action); in Attach()
1069 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() function in art::Thread
1082 return Attach(thread_name, as_daemon, set_peer_action); in Attach()
Druntime.cc1545 Thread* self = Thread::Attach("main", false, nullptr, false); in Init()
1860 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
2114 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer); in AttachCurrentThread()
/art/adbconnection/
Dadbconnection.cc205 art::Thread* self = art::Thread::Attach(kAdbConnectionThreadName, in CallbackFunction()
/art/openjdkjvmti/
Dti_thread.cc771 art::Thread* self = art::Thread::Attach(data->name.c_str(), true, data->thread); in AgentCallback()