Searched defs:thread_name (Results 1 - 10 of 10) sorted by relevance

/art/runtime/
H A Dmonitor_android.cc62 std::string thread_name; local
63 self->GetThreadName(thread_name);
64 ctx << thread_name; local
H A Dinstrumentation.cc278 std::string thread_name; local
279 GetThread()->GetThreadName(thread_name);
285 LOG(FATAL) << "While walking " << thread_name << " found unexpected non-runtime method"
333 std::string thread_name; local
334 thread->GetThreadName(thread_name);
335 LOG(INFO) << "Installing exit stubs in " << thread_name;
443 std::string thread_name; local
444 thread->GetThreadName(thread_name);
445 LOG(INFO) << "Removing exit stubs in " << thread_name;
H A Djava_vm_ext.cc417 const char* thread_name = nullptr; local
426 thread_name = args->name;
430 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group,
H A Dthread_list.cc1465 std::string thread_name; local
1466 self->GetThreadName(thread_name);
1469 LOG(ERROR) << "Request to unregister unattached thread " << thread_name << "\n" << os.str();
H A Dtrace.cc1004 std::string thread_name; local
1005 thread->GetThreadName(thread_name);
1010 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
1012 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
H A Druntime.cc1915 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1918 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer);
H A Dthread.cc633 std::string thread_name; local
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) { argument
779 ((thread_name != nullptr) ? thread_name : "(Unnamed)");
787 ((thread_name != nullptr) ? thread_name : "(Unnamed)");
814 if (thread_name !
831 Attach(const char* thread_name, bool as_daemon, jobject thread_group, bool create_peer) argument
867 Attach(const char* thread_name, bool as_daemon, jobject thread_peer) argument
1005 InitPeer(ScopedObjectAccessAlreadyRunnable& soa, ObjPtr<mirror::Object> peer, jboolean thread_is_daemon, jobject thread_group, jobject thread_name, jint thread_priority) argument
3590 std::string thread_name; local
[all...]
/art/libartbase/base/
H A Dutils.cc116 void SetThreadName(const char* thread_name) { argument
119 const char* s = thread_name;
128 int len = s - thread_name;
130 s = thread_name;
132 s = thread_name + len - 15;
144 pthread_setname_np(thread_name);
/art/test/912-classes/
H A Dclasses.cc305 std::string thread_name = GetThreadName(jenv, jni_env, thread); local
306 if (thread_name == "") {
309 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) {
316 thread_name.c_str()));
327 std::string thread_name = GetThreadName(jenv, jni_env, thread); local
328 if (thread_name == "") {
331 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) {
339 thread_name.c_str(),
391 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name_str.c_str()));
392 CHECK(thread_name
[all...]
/art/runtime/jdwp/
H A Djdwp_event.cc834 std::string thread_name; local
835 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name);
837 thread_name = "<unknown>";
839 VLOG(jdwp) << StringPrintf(" thread=%#" PRIx64, thread_id) << " " << thread_name;

Completed in 206 milliseconds