Home
last modified time | relevance | path

Searched refs:AttachCurrentThread (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dsignal_catcher.cc199 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run()
Dthread_pool.cc61 CHECK(runtime->AttachCurrentThread(worker->name_.c_str(), true, NULL, false)); in Callback()
Druntime.h199 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
Dcheck_jni.cc2033 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() function in art::CheckJII
2036 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThread(vm, p_env, thr_args)); in AttachCurrentThread()
2068 CheckJII::AttachCurrentThread,
Dtrace.cc298 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(), in RunSamplingThread()
Dreflection_test.cc40 vm_->AttachCurrentThread(&env_, NULL); in SetUp()
Dprofiler.cc167 CHECK(runtime->AttachCurrentThread("Profiler", true, runtime->GetSystemThreadGroup(), in RunProfilerThread()
Djni_internal_test.cc38 vm_->AttachCurrentThread(&env_, nullptr); in SetUp()
1685 vm_->AttachCurrentThread(&env_, nullptr); // need attached thread for CommonRuntimeTest::TearDown in TEST_F()
Druntime.cc1096 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() function in art::Runtime
Djni_internal.cc341 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) { in JII_AttachCurrentThread()
3069 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() function in art::JII
3113 JII::AttachCurrentThread,
/art/runtime/jdwp/
Djdwp_main.cc409 CHECK(runtime->AttachCurrentThread("JDWP", true, runtime->GetSystemThreadGroup(), in Run()
/art/test/004-JniTest/
Djni_test.cc42 int attach_result = jvm->AttachCurrentThread(&env, &args); in AttachHelper()