Searched refs:array_id (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 1131 ObjectId array_id = request->ReadArrayId(); in AR_Length() local 1134 JdwpError status = Dbg::GetArrayLength(array_id, &length); in AR_Length() 1150 ObjectId array_id = request->ReadArrayId(); in AR_GetValues() local 1153 return Dbg::OutputArray(array_id, offset, length, pReply); in AR_GetValues() 1161 ObjectId array_id = request->ReadArrayId(); in AR_SetValues() local 1164 return Dbg::SetArrayElements(array_id, offset, count, request); in AR_SetValues()
|
/art/runtime/ |
D | debugger.h | 310 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length) 312 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count, 315 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
|
D | debugger.cc | 1221 JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { in GetArrayLength() argument 1223 mirror::Array* a = DecodeNonNullArray(array_id, &error); in GetArrayLength() 1231 JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* p… in OutputArray() argument 1233 mirror::Array* a = DecodeNonNullArray(array_id, &error); in OutputArray() 1289 JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, in SetArrayElements() argument 1292 mirror::Array* dst = DecodeNonNullArray(array_id, &error); in SetArrayElements()
|