Home
last modified time | relevance | path

Searched refs:JdwpTag (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Ddebugger.h83 JDWP::JdwpTag result_tag;
286 static size_t GetTagWidth(JDWP::JdwpTag tag);
393 static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id)
395 static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id)
411 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
566 JDWP::JdwpTag* arg_types, uint32_t options,
567 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
638 static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
653 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
656 static JDWP::JdwpError SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
Ddebugger.cc458 static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { in BasicTagFromDescriptor()
461 return static_cast<JDWP::JdwpTag>(descriptor[0]); in BasicTagFromDescriptor()
464 static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) in BasicTagFromClass()
471 static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) in TagFromClass()
514 JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { in TagFromObject()
518 static bool IsPrimitiveTag(JDWP::JdwpTag tag) { in IsPrimitiveTag()
1263 size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { in GetTagWidth()
1314 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); in OutputArray()
1339 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) in OutputArray()
1374 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); in SetArrayElements()
[all …]
/art/runtime/jdwp/
Djdwp_constants.h225 enum JdwpTag { enum
243 std::ostream& operator<<(std::ostream& os, const JdwpTag& value);
Djdwp_request.cc135 JdwpTag Request::ReadTag() { in ReadTag()
136 return ReadEnum1<JdwpTag>("tag"); in ReadTag()
Djdwp_handler.cc109 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : NULL); in FinishInvoke()
124 JdwpTag resultTag; in FinishInvoke()
668 JDWP::JdwpTag fieldTag = Dbg::GetStaticFieldBasicTag(fieldId); in CT_SetValues()
842 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId); in OR_SetValues()
Djdwp.h428 JdwpTag ReadTag();