Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.h75 JDWP::JdwpTag result_tag;
158 static size_t GetTagWidth(JDWP::JdwpTag tag);
239 static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id)
241 static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id)
312 JDWP::JdwpTag tag, uint8_t* buf, size_t expectedLen)
315 JDWP::JdwpTag tag, uint64_t value, size_t width)
363 JDWP::JdwpTag* arg_types, uint32_t options,
364 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
Ddebugger.cc271 static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { in BasicTagFromDescriptor()
274 return static_cast<JDWP::JdwpTag>(descriptor[0]); in BasicTagFromDescriptor()
277 static JDWP::JdwpTag TagFromClass(mirror::Class* c) in TagFromClass()
308 static JDWP::JdwpTag TagFromObject(const mirror::Object* o) in TagFromObject()
313 static bool IsPrimitiveTag(JDWP::JdwpTag tag) { in IsPrimitiveTag()
960 size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { in GetTagWidth()
1012 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1); in OutputArray()
1037 JDWP::JdwpTag specific_tag = (element != NULL) ? TagFromObject(element) : tag; in OutputArray()
1069 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1); in SetArrayElements()
1426 JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { in GetFieldBasicTag()
[all …]
/art/runtime/jdwp/
Djdwp_constants.h225 enum JdwpTag { enum
243 std::ostream& operator<<(std::ostream& os, const JdwpTag& value);
Djdwp_request.cc133 JdwpTag Request::ReadTag() { in ReadTag()
134 return ReadEnum1<JdwpTag>("tag"); in ReadTag()
Djdwp_handler.cc108 UniquePtr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : NULL); in FinishInvoke()
122 JdwpTag resultTag; in FinishInvoke()
659 JDWP::JdwpTag fieldTag = Dbg::GetStaticFieldBasicTag(fieldId); in CT_SetValues()
833 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId); in OR_SetValues()
1402 JDWP::JdwpTag reqSigByte = request.ReadTag(); in SF_GetValues()
1425 JDWP::JdwpTag sigByte = request.ReadTag(); in SF_SetValues()
Djdwp.h385 JdwpTag ReadTag();