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

/art/runtime/jdwp/
H A Djdwp_handler.cc189 std::vector<RefTypeId> ids; local
190 Dbg::FindLoadedClassBySignature(classDescriptor.c_str(), ids);
192 expandBufAdd4BE(pReply, ids.size());
194 for (size_t i = 0; i < ids.size(); ++i) {
198 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, NULL);
204 expandBufAddRefTypeId(pReply, ids[i]);
/art/runtime/
H A Ddebugger.cc899 void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) { argument
902 ids.clear();
904 ids.push_back(gRegistry->Add(classes[i]));
2251 // so there's no point adding it to the registry and burning through ids.

Completed in 85 milliseconds