Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.h160 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int& length)
162 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
165 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ddebugger.cc990 JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) { in GetArrayLength() argument
992 mirror::Array* a = DecodeArray(array_id, status); in GetArrayLength()
1000 JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* p… in OutputArray() argument
1002 mirror::Array* a = DecodeArray(array_id, status); in OutputArray()
1055 JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, in SetArrayElements() argument
1059 mirror::Array* dst = DecodeArray(array_id, status); in SetArrayElements()
/art/runtime/jdwp/
Djdwp_handler.cc1188 ObjectId array_id = request.ReadArrayId(); in AR_Length() local
1191 JdwpError status = Dbg::GetArrayLength(array_id, length); in AR_Length()
1207 ObjectId array_id = request.ReadArrayId(); in AR_GetValues() local
1210 return Dbg::OutputArray(array_id, offset, length, pReply); in AR_GetValues()
1218 ObjectId array_id = request.ReadArrayId(); in AR_SetValues() local
1221 return Dbg::SetArrayElements(array_id, offset, count, request); in AR_SetValues()