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

/art/runtime/
H A Dmonitor_android.cc72 std::string thread_name;
73 self->GetThreadName(thread_name);
74 cp = EventLogWriteString(cp, thread_name.c_str(), thread_name.size());
H A Druntime_linux.cc251 std::string thread_name(GetThreadName(tid));
263 << "Thread: " << tid << " \"" << thread_name << "\"\n"
269 << "* Process " << getpid() << " thread " << tid << " \"" << thread_name << "\""
H A Dinstrumentation.cc157 std::string thread_name; local
158 thread->GetThreadName(thread_name);
159 LOG(INFO) << "Installing exit stubs in " << thread_name;
244 std::string thread_name; local
245 thread->GetThreadName(thread_name);
246 LOG(INFO) << "Removing exit stubs in " << thread_name;
H A Dutils.cc922 void SetThreadName(const char* thread_name) { argument
925 const char* s = thread_name;
934 int len = s - thread_name;
936 s = thread_name;
938 s = thread_name + len - 15;
950 pthread_setname_np(thread_name);
954 UNIMPLEMENTED(WARNING) << thread_name;
H A Dthread.cc163 SirtRef<mirror::String> thread_name(self, self->GetThreadName(soa));
164 self->SetThreadName(thread_name->ToModifiedUtf8().c_str());
315 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
320 LOG(ERROR) << "Thread attaching to non-existent runtime: " << thread_name;
326 LOG(ERROR) << "Thread attaching while runtime is shutting down: " << thread_name;
344 self->CreatePeer(thread_name, as_daemon, thread_group);
347 if (thread_name != NULL) {
348 self->name_->assign(thread_name);
349 ::art::SetThreadName(thread_name);
364 ScopedLocalRef<jobject> thread_name(en
[all...]
H A Druntime.h247 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
H A Dutils.h336 void SetThreadName(const char* thread_name);
H A Druntime.cc1118 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1120 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
1121 if (thread_name == NULL) {
H A Dthread.h101 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group,
H A Djni_internal.cc423 const char* thread_name = NULL; local
432 thread_name = args->name;
436 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {

Completed in 990 milliseconds