Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_threadgroup.cc192 std::vector<art::ObjPtr<art::mirror::Object>>* thread_groups) in GetChildThreadGroups() argument
212 thread_groups->push_back(entry); in GetChildThreadGroups()
242 std::vector<art::ObjPtr<art::mirror::Object>> thread_groups; in GetThreadGroupChildren() local
243 GetChildThreadGroups(thread_group, &thread_groups); in GetThreadGroupChildren()
255 if (!thread_groups.empty()) { in GetThreadGroupChildren()
257 group_uptr = AllocJvmtiUniquePtr<jthreadGroup[]>(env, thread_groups.size(), &res); in GetThreadGroupChildren()
269 for (size_t i = 0; i != thread_groups.size(); ++i) { in GetThreadGroupChildren()
270 group_uptr[i] = soa.AddLocalReference<jthreadGroup>(thread_groups[i]); in GetThreadGroupChildren()
275 *group_count_ptr = static_cast<jint>(thread_groups.size()); in GetThreadGroupChildren()