Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc1157 ObjectId array_id = request->ReadArrayId(); in AR_Length() local
1160 JdwpError status = Dbg::GetArrayLength(array_id, &length); in AR_Length()
1176 ObjectId array_id = request->ReadArrayId(); in AR_GetValues() local
1179 return Dbg::OutputArray(array_id, offset, length, pReply); in AR_GetValues()
1187 ObjectId array_id = request->ReadArrayId(); in AR_SetValues() local
1190 return Dbg::SetArrayElements(array_id, offset, count, request); in AR_SetValues()
/art/runtime/
Ddebugger.h330 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length)
332 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id,
337 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Dclass_linker_test.cc1001 const dex::TypeId* array_id = dex_file.FindTypeId("[Ljava/lang/Object;"); in TEST_F() local
1002 ASSERT_TRUE(array_id != nullptr); in TEST_F()
1003 dex::TypeIndex array_idx = dex_file.GetIndexForTypeId(*array_id); in TEST_F()
Ddebugger.cc1237 JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { in GetArrayLength() argument
1239 ObjPtr<mirror::Array> a = DecodeNonNullArray(array_id, &error); in GetArrayLength()
1247 JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, in OutputArray() argument
1252 ObjPtr<mirror::Array> a = DecodeNonNullArray(array_id, &error); in OutputArray()
1308 JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, in SetArrayElements() argument
1311 ObjPtr<mirror::Array> dst = DecodeNonNullArray(array_id, &error); in SetArrayElements()