Lines Matching refs:thread_group
513 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, in Attach() argument
548 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach()
579 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument
584 if (thread_group == nullptr) { in CreatePeer()
585 thread_group = runtime->GetMainThreadGroup(); in CreatePeer()
608 thread_group, thread_name.get(), thread_priority, thread_is_daemon); in CreatePeer()
627 InitPeer<true>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority); in CreatePeer()
629 InitPeer<false>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority); in CreatePeer()
640 void Thread::InitPeer(ScopedObjectAccess& soa, jboolean thread_is_daemon, jobject thread_group, in InitPeer() argument
645 SetObject<kTransactionActive>(tlsPtr_.opeer, soa.Decode<mirror::Object*>(thread_group)); in InitPeer()
933 mirror::Object* thread_group = in DumpState() local
936 if (thread_group != nullptr) { in DumpState()
940 reinterpret_cast<mirror::String*>(group_name_field->GetObject(thread_group)); in DumpState()