Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc1158 ObjectId array_id = request->ReadArrayId(); in AR_Length() local
1161 JdwpError status = Dbg::GetArrayLength(array_id, &length); in AR_Length()
1177 ObjectId array_id = request->ReadArrayId(); in AR_GetValues() local
1180 return Dbg::OutputArray(array_id, offset, length, pReply); in AR_GetValues()
1188 ObjectId array_id = request->ReadArrayId(); in AR_SetValues() local
1191 return Dbg::SetArrayElements(array_id, offset, count, request); in AR_SetValues()
/art/runtime/
Ddebugger.h320 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length)
322 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
325 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Dclass_linker_test.cc987 const DexFile::TypeId* array_id = dex_file.FindTypeId("[Ljava/lang/Object;"); in TEST_F() local
988 ASSERT_TRUE(array_id != nullptr); in TEST_F()
989 dex::TypeIndex array_idx = dex_file.GetIndexForTypeId(*array_id); in TEST_F()