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.cc188 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run()
Dthread_pool.cc91 CHECK(runtime->AttachCurrentThread(worker->name_.c_str(), in Callback()
Djava_vm_ext.cc330 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() function in art::JII
396 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()
412 JII::AttachCurrentThread,
Druntime_callbacks_test.cc90 CHECK(runtime->AttachCurrentThread("ThreadLifecycle test thread", true, nullptr, false)); in PthreadsCallback()
Druntime.h231 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
Dreflection_test.cc43 vm_->AttachCurrentThread(&env_, nullptr); in SetUp()
Druntime.cc279 CHECK(AttachCurrentThread("Shutdown thread", false, nullptr, false)); in ~Runtime()
1692 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() function in art::Runtime
Dtrace.cc288 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(), in RunSamplingThread()
Djni_internal_test.cc45 vm_->AttachCurrentThread(&env_, nullptr); in SetUp()
2296 jint attach_result = vm_->AttachCurrentThread(&env_, nullptr); in TEST_F()
Dcheck_jni.cc3841 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() function in art::CheckJII
3846 result.i = BaseVm(vm)->AttachCurrentThread(vm, p_env, thr_args); in AttachCurrentThread()
3892 CheckJII::AttachCurrentThread,
/art/runtime/jdwp/
Djdwp_main.cc450 CHECK(runtime->AttachCurrentThread("JDWP", true, runtime->GetSystemThreadGroup(), in Run()
/art/runtime/jit/
Dprofile_saver.cc384 bool attached = runtime->AttachCurrentThread("Profile Saver", in RunProfileSaverThread()
/art/test/004-JniTest/
Djni_test.cc59 int attach_result = jvm->AttachCurrentThread(&env, &args); in AttachHelper()