Searched refs:ids (Results 1 - 4 of 4) sorted by relevance

/art/compiler/dex/
H A Dmir_graph_test.cc127 void DoCheckOrder(const BasicBlockId* ids, size_t count) { argument
130 EXPECT_EQ(ids[i], cu_.mir_graph->GetTopologicalSortOrder()[i]) << i;
135 void CheckOrder(const BasicBlockId (&ids)[count]) {
136 DoCheckOrder(ids, count);
/art/runtime/jdwp/
H A Djdwp_handler.cc153 std::vector<RefTypeId> ids; local
154 Dbg::FindLoadedClassBySignature(classDescriptor.c_str(), &ids);
156 expandBufAdd4BE(pReply, ids.size());
158 for (size_t i = 0; i < ids.size(); ++i) {
162 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, nullptr);
168 expandBufAddRefTypeId(pReply, ids[i]);
/art/runtime/
H A Ddebugger.h298 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids)
798 // The registry mapping objects to JDWP ids.
H A Ddebugger.cc1129 void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { argument
1132 ids->clear();
1134 ids->push_back(gRegistry->Add(classes[i]));
2881 // This is required to be able to call JNI functions to create JDWP ids. To achieve this,
4055 // Prepare JDWP ids for the reply.

Completed in 87 milliseconds