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

/art/runtime/jdwp/
H A Djdwp_handler.cc219 std::vector<ObjectId> thread_ids; local
220 Dbg::GetThreads(0, thread_ids);
222 expandBufAdd4BE(pReply, thread_ids.size());
223 for (uint32_t i = 0; i < thread_ids.size(); ++i) {
224 expandBufAddObjectId(pReply, thread_ids[i]);
1166 std::vector<ObjectId> thread_ids; local
1167 Dbg::GetThreads(thread_group_id, thread_ids);
1168 expandBufAdd4BE(pReply, thread_ids.size());
1169 for (uint32_t i = 0; i < thread_ids.size(); ++i) {
1170 expandBufAddObjectId(pReply, thread_ids[
[all...]
/art/runtime/
H A Ddebugger.cc1745 void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) { argument
1749 std::vector<JDWP::ObjectId>& thread_ids)
1751 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
1797 ThreadListVisitor tlv(soa, thread_group, thread_ids);

Completed in 379 milliseconds