Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.h289 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
291 static JDWP::JdwpError GetSourceDebugExtension(JDWP::RefTypeId ref_type_id,
294 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file)
378 static JDWP::JdwpError OutputDeclaredFields(JDWP::RefTypeId ref_type_id, bool with_generic,
381 static JDWP::JdwpError OutputDeclaredMethods(JDWP::RefTypeId ref_type_id, bool with_generic,
384 static JDWP::JdwpError OutputDeclaredInterfaces(JDWP::RefTypeId ref_type_id,
387 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
390 static void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic,
415 static JDWP::JdwpError GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
Ddebugger.cc1781 static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, in GetFieldValueImpl() argument
1786 mirror::Class* c = DecodeClass(ref_type_id, &error); in GetFieldValueImpl()
1787 if (ref_type_id != 0 && c == nullptr) { in GetFieldValueImpl()
1846 JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, in GetStaticFieldValue() argument
1848 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); in GetStaticFieldValue()
/art/runtime/jdwp/
Djdwp.h420 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) REQUIRES_SHARED(Locks::mutator_lock_);
Djdwp_handler.cc53 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) { in DescribeRefTypeId() argument
55 Dbg::GetSignature(ref_type_id, &signature); in DescribeRefTypeId()
56 return StringPrintf("%#" PRIx64 " (%s)", ref_type_id, signature.c_str()); in DescribeRefTypeId()