Home | History | Annotate | Download | only in runtime

Lines Matching full:thread_name

633     std::string thread_name;
635 thread_name = java_name->ToModifiedUtf8();
637 thread_name = "(Unnamed)";
640 VLOG(threads) << "Creating native thread for " << thread_name;
775 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) {
779 ((thread_name != nullptr) ? thread_name : "(Unnamed)");
787 ((thread_name != nullptr) ? thread_name : "(Unnamed)");
814 if (thread_name != nullptr) {
815 VLOG(threads) << "Attaching thread " << thread_name;
831 Thread* Thread::Attach(const char* thread_name,
841 self->CreatePeer(thread_name, as_daemon, thread_group);
855 if (thread_name != nullptr) {
856 self->tlsPtr_.name->assign(thread_name);
857 ::art::SetThreadName(thread_name);
864 return Attach(thread_name, as_daemon, create_peer_action);
867 thread_name, bool as_daemon, jobject thread_peer) {
880 return Attach(thread_name, as_daemon, set_peer_action);
891 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name));
893 if (name != nullptr && thread_name.get() == nullptr) {
912 thread_group, thread_name.get(), thread_priority, thread_is_daemon);
935 thread_name.get(),
942 thread_name.get(),
947 // 'thread_name' may have been null, so don't trust 'peer_thread_name' to be non-null.
963 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name));
965 if (name != nullptr && thread_name.get() == nullptr) {
990 thread_name.get(),
997 thread_name.get(),
1009 jobject thread_name,
1016 SetObject<kTransactionActive>(peer, soa.Decode<mirror::Object>(thread_name));
3590 std::string thread_name;
3591 GetThread()->GetThreadName(thread_name);
3592 LOG(FATAL_WITHOUT_ABORT) << "On thread " << thread_name;