Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_threadgroup.cc197 std::vector<art::ObjPtr<art::mirror::Object>>* thread_groups) in GetChildThreadGroups() argument
216 thread_groups->push_back(entry); in GetChildThreadGroups()
245 std::vector<art::ObjPtr<art::mirror::Object>> thread_groups; in GetThreadGroupChildren() local
246 GetChildThreadGroups(thread_group, &thread_groups); in GetThreadGroupChildren()
258 if (!thread_groups.empty()) { in GetThreadGroupChildren()
260 group_uptr = AllocJvmtiUniquePtr<jthreadGroup[]>(env, thread_groups.size(), &res); in GetThreadGroupChildren()
272 for (size_t i = 0; i != thread_groups.size(); ++i) { in GetThreadGroupChildren()
273 group_uptr[i] = soa.AddLocalReference<jthreadGroup>(thread_groups[i]); in GetThreadGroupChildren()
278 *group_count_ptr = static_cast<jint>(thread_groups.size()); in GetThreadGroupChildren()