Lines Matching refs:thread_group

2062   mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,  in DecodeThreadGroup()  local
2067 if (thread_group == nullptr) { in DecodeThreadGroup()
2074 if (!c->IsAssignableFrom(thread_group->GetClass())) { in DecodeThreadGroup()
2080 return thread_group; in DecodeThreadGroup()
2086 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); in GetThreadGroupName() local
2093 ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString(); in GetThreadGroupName()
2103 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); in GetThreadGroupParent() local
2112 parent = f->GetObject(thread_group); in GetThreadGroupParent()
2119 static void GetChildThreadGroups(mirror::Object* thread_group, in GetChildThreadGroups() argument
2122 CHECK(thread_group != nullptr); in GetChildThreadGroups()
2127 const int32_t size = ngroups_field->GetInt(thread_group); in GetChildThreadGroups()
2134 ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group); in GetChildThreadGroups()
2153 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); in GetThreadGroupChildren() local
2161 GetThreads(thread_group, &child_thread_ids); in GetThreadGroupChildren()
2171 GetChildThreadGroups(thread_group, &child_thread_groups_ids); in GetThreadGroupChildren()
2285 void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) { in GetThreads() argument
2312 if (IsInDesiredThreadGroup(thread_group, peer)) { in GetThreads()