Searched defs:array_id (Results 1 - 2 of 2) sorted by relevance

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

Completed in 66 milliseconds