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

/art/runtime/jdwp/
H A Djdwp_handler.cc1158 ObjectId array_id = request->ReadArrayId(); local
1161 JdwpError status = Dbg::GetArrayLength(array_id, &length);
1177 ObjectId array_id = request->ReadArrayId(); local
1180 return Dbg::OutputArray(array_id, offset, length, pReply);
1188 ObjectId array_id = request->ReadArrayId(); local
1191 return Dbg::SetArrayElements(array_id, offset, count, request);
/art/runtime/
H A Ddebugger.h300 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length)
302 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
305 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
H A Dclass_linker_test.cc956 const DexFile::TypeId* array_id = dex_file.FindTypeId("[Ljava/lang/Object;"); local
957 ASSERT_TRUE(array_id != nullptr);
958 dex::TypeIndex array_idx = dex_file.GetIndexForTypeId(*array_id);
H A Ddebugger.cc1168 JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { argument
1170 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1178 JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) { argument
1180 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1236 JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, argument
1239 mirror::Array* dst = DecodeNonNullArray(array_id, &error);

Completed in 657 milliseconds