Home
last modified time | relevance | path

Searched refs:groups_array (Results 1 – 2 of 2) sorted by relevance

/art/openjdkjvmti/
Dti_threadgroup.cc196 art::ObjPtr<art::mirror::Object> groups_array = groups_field->GetObject(thread_group.Get()); in GetChildThreadGroups() local
198 if (groups_array == nullptr) { in GetChildThreadGroups()
201 CHECK(groups_array->IsObjectArray()); in GetChildThreadGroups()
204 groups_array->AsObjectArray<art::mirror::Object>(); in GetChildThreadGroups()
/art/runtime/
Ddebugger.cc2183 ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group); in GetChildThreadGroups() local
2185 CHECK(groups_array != nullptr); in GetChildThreadGroups()
2186 CHECK(groups_array->IsObjectArray()); in GetChildThreadGroups()
2189 groups_array->AsObjectArray<mirror::Object>(); in GetChildThreadGroups()