Searched defs:thread_name (Results 1 - 6 of 6) sorted by last modified time

/art/runtime/
H A Dinstrumentation.cc306 std::string thread_name; local
307 thread->GetThreadName(thread_name);
308 LOG(INFO) << "Installing exit stubs in " << thread_name;
407 std::string thread_name; local
408 thread->GetThreadName(thread_name);
409 LOG(INFO) << "Removing exit stubs in " << thread_name;
H A Djni_internal.cc328 const char* thread_name = nullptr; local
337 thread_name = args->name;
341 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {
H A Druntime.cc1096 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1098 return Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
H A Dthread.cc375 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
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
481 InitPeer(ScopedObjectAccess& soa, jboolean thread_is_daemon, jobject thread_group, jobject thread_name, jint thread_priority) argument
[all...]
H A Dutils.cc987 void SetThreadName(const char* thread_name) { argument
990 const char* s = thread_name;
999 int len = s - thread_name;
1001 s = thread_name;
1003 s = thread_name + len - 15;
1015 pthread_setname_np(thread_name);
1019 UNIMPLEMENTED(WARNING) << thread_name;
/art/runtime/jdwp/
H A Djdwp_event.cc797 std::string thread_name; local
798 JdwpError error = Dbg::GetThreadName(thread_id, thread_name);
800 thread_name = "<unknown>";
802 VLOG(jdwp) << StringPrintf(" thread=%#" PRIx64, thread_id) << " " << thread_name;

Completed in 249 milliseconds