Home
last modified time | relevance | path

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

/art/runtime/
Djava_vm_ext_test.cc68 ok = vms_buf[0]->AttachCurrentThread(&env, nullptr); in attach_current_thread_callback()
86 TEST_F(JavaVmExtTest, AttachCurrentThread) { in TEST_F() argument
128 jint ok = vm_->AttachCurrentThread(&env, nullptr); in TEST_F()
Dsignal_catcher.cc186 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run()
Dthread_pool.cc87 CHECK(runtime->AttachCurrentThread(worker->name_.c_str(), true, nullptr, false)); in Callback()
Djava_vm_ext.cc328 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() function in art::JII
401 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()
417 JII::AttachCurrentThread,
Druntime.h243 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
Dreflection_test.cc40 vm_->AttachCurrentThread(&env_, nullptr); in SetUp()
Dprofiler.cc169 CHECK(runtime->AttachCurrentThread("Profiler", true, runtime->GetSystemThreadGroup(), in RunProfilerThread()
Druntime.cc241 CHECK(AttachCurrentThread("Shutdown thread", false, nullptr, false)); in ~Runtime()
1495 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() function in art::Runtime
Dtrace.cc282 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(), in RunSamplingThread()
Djni_internal_test.cc41 vm_->AttachCurrentThread(&env_, nullptr); in SetUp()
2255 jint attach_result = vm_->AttachCurrentThread(&env_, nullptr); in TEST_F()
Dcheck_jni.cc3826 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() function in art::CheckJII
3831 result.i = BaseVm(vm)->AttachCurrentThread(vm, p_env, thr_args); in AttachCurrentThread()
3877 CheckJII::AttachCurrentThread,
/art/runtime/jdwp/
Djdwp_main.cc443 CHECK(runtime->AttachCurrentThread("JDWP", true, runtime->GetSystemThreadGroup(), in Run()
/art/runtime/jit/
Dprofile_saver.cc351 bool attached = runtime->AttachCurrentThread("Profile Saver", in RunProfileSaverThread()
/art/test/004-JniTest/
Djni_test.cc50 int attach_result = jvm->AttachCurrentThread(&env, &args); in AttachHelper()