Searched defs:thread_group_id (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_handler.cc243 ObjectId thread_group_id = Dbg::GetSystemThreadGroupId(); local
244 expandBufAddObjectId(pReply, thread_group_id);
1137 ObjectId thread_group_id = request.ReadThreadGroupId(); local
1139 expandBufAddUtf8String(pReply, Dbg::GetThreadGroupName(thread_group_id));
1150 ObjectId thread_group_id = request.ReadThreadGroupId(); local
1152 ObjectId parentGroup = Dbg::GetThreadGroupParent(thread_group_id);
1164 ObjectId thread_group_id = request.ReadThreadGroupId(); local
1167 Dbg::GetThreads(thread_group_id, thread_ids);
1174 Dbg::GetChildThreadGroups(thread_group_id, child_thread_groups_ids);
/art/runtime/
H A Ddebugger.cc1619 JDWP::ObjectId thread_group_id = gRegistry->Add(group); local
1621 expandBufAddObjectId(pReply, thread_group_id);
1625 std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) { argument
1627 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
1638 JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) { argument
1639 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
1745 void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) { argument
1796 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
1802 void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) { argument
1804 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
[all...]

Completed in 10 milliseconds