Home | History | Annotate | Download | only in runtime

Lines Matching refs:thread_group

833                        jobject thread_group,
841 self->CreatePeer(thread_name, as_daemon, thread_group);
883 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) {
888 if (thread_group == nullptr) {
889 thread_group = runtime->GetMainThreadGroup();
912 thread_group, thread_name.get(), thread_priority, thread_is_daemon);
934 thread_group,
941 thread_group,
956 jobject thread_group) {
960 if (thread_group == nullptr) {
961 thread_group = runtime->GetMainThreadGroup();
989 thread_group,
996 thread_group,
1008 jobject thread_group,
1014 SetObject<kTransactionActive>(peer, soa.Decode<mirror::Object>(thread_group));
1644 ObjPtr<mirror::Object> thread_group =
1648 if (thread_group != nullptr) {
1652 group_name_field->GetObject(thread_group)->AsString();
2073 void Thread::NotifyThreadGroup(ScopedObjectAccessAlreadyRunnable& soa, jobject thread_group) {
2078 jobject thread_group_jobject = thread_group;
2079 if (thread_group == nullptr || kIsDebugBuild) {
2085 if (kIsDebugBuild && thread_group != nullptr) {
2086 CHECK(soa.Env()->IsSameObject(thread_group, thread_group_jobject));