Lines Matching refs:thread_group

1035                        jobject thread_group,  in Attach()  argument
1043 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach()
1085 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument
1090 if (thread_group == nullptr) { in CreatePeer()
1091 thread_group = runtime->GetMainThreadGroup(); in CreatePeer()
1114 thread_group, thread_name.get(), thread_priority, thread_is_daemon); in CreatePeer()
1137 thread_group, in CreatePeer()
1144 thread_group, in CreatePeer()
1159 jobject thread_group) { in CreateCompileTimePeer() argument
1163 if (thread_group == nullptr) { in CreateCompileTimePeer()
1164 thread_group = runtime->GetMainThreadGroup(); in CreateCompileTimePeer()
1192 thread_group, in CreateCompileTimePeer()
1199 thread_group, in CreateCompileTimePeer()
1211 jobject thread_group, in InitPeer() argument
1217 SetObject<kTransactionActive>(peer, soa.Decode<mirror::Object>(thread_group)); in InitPeer()
1834 ObjPtr<mirror::Object> thread_group = in DumpState() local
1838 if (thread_group != nullptr) { in DumpState()
1842 group_name_field->GetObject(thread_group)->AsString(); in DumpState()
2267 void Thread::NotifyThreadGroup(ScopedObjectAccessAlreadyRunnable& soa, jobject thread_group) { in NotifyThreadGroup() argument
2272 jobject thread_group_jobject = thread_group; in NotifyThreadGroup()
2273 if (thread_group == nullptr || kIsDebugBuild) { in NotifyThreadGroup()
2279 if (kIsDebugBuild && thread_group != nullptr) { in NotifyThreadGroup()
2280 CHECK(soa.Env()->IsSameObject(thread_group, thread_group_jobject)); in NotifyThreadGroup()