Home | History | Annotate | Download | only in runtime

Lines Matching full:thread_name

375 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group,
380 LOG(ERROR) << "Thread attaching to non-existent runtime: " << thread_name;
386 LOG(ERROR) << "Thread attaching while runtime is shutting down: " << thread_name;
404 self->CreatePeer(thread_name, as_daemon, thread_group);
407 if (thread_name != nullptr) {
408 self->tlsPtr_.name->assign(thread_name);
409 ::art::SetThreadName(thread_name);
431 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name));
432 if (name != nullptr && thread_name.get() == nullptr) {
451 thread_group, thread_name.get(), thread_priority, thread_is_daemon);
468 InitPeer<true>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
470 InitPeer<false>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
474 // 'thread_name' may have been null, so don't trust 'peer_thread_name' to be non-null.
482 jobject thread_name, jint thread_priority) {
488 SetObject<kTransactionActive>(tlsPtr_.opeer, soa.Decode<mirror::Object*>(thread_name));