Lines Matching refs:thread_group

1041                        jobject thread_group,  in Attach()  argument
1049 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach()
1094 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument
1099 if (thread_group == nullptr) { in CreatePeer()
1100 thread_group = runtime->GetMainThreadGroup(); in CreatePeer()
1123 thread_group, thread_name.get(), thread_priority, thread_is_daemon); in CreatePeer()
1146 thread_group, in CreatePeer()
1153 thread_group, in CreatePeer()
1168 jobject thread_group) { in CreateCompileTimePeer() argument
1172 if (thread_group == nullptr) { in CreateCompileTimePeer()
1173 thread_group = runtime->GetMainThreadGroup(); in CreateCompileTimePeer()
1201 thread_group, in CreateCompileTimePeer()
1208 thread_group, in CreateCompileTimePeer()
1220 jobject thread_group, in InitPeer() argument
1226 SetObject<kTransactionActive>(peer, soa.Decode<mirror::Object>(thread_group)); in InitPeer()
1844 ObjPtr<mirror::Object> thread_group = in DumpState() local
1848 if (thread_group != nullptr) { in DumpState()
1852 group_name_field->GetObject(thread_group)->AsString(); in DumpState()
2277 void Thread::NotifyThreadGroup(ScopedObjectAccessAlreadyRunnable& soa, jobject thread_group) { in NotifyThreadGroup() argument
2282 jobject thread_group_jobject = thread_group; in NotifyThreadGroup()
2283 if (thread_group == nullptr || kIsDebugBuild) { in NotifyThreadGroup()
2289 if (kIsDebugBuild && thread_group != nullptr) { in NotifyThreadGroup()
2290 CHECK(soa.Env()->IsSameObject(thread_group, thread_group_jobject)); in NotifyThreadGroup()