Home | History | Annotate | Download | only in runtime

Lines Matching refs:thread_group

2028   mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id);
2029 if (thread_group == nullptr || thread_group == ObjectRegistry::kInvalidObject) {
2035 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2041 return thread_group;
2047 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2055 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
2066 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2075 mirror::Object* parent = f->GetObject(thread_group);
2083 static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2086 CHECK(thread_group != nullptr);
2089 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
2090 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
2110 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2118 GetThreads(thread_group, &child_thread_ids);
2128 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2242 void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
2269 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {