Searched refs:RefTypeId (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | debugger.h | 253 static std::string GetClassName(JDWP::RefTypeId id) 257 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) 259 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) 261 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 263 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 265 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) 267 static void GetClassList(std::vector<JDWP::RefTypeId>& classes) 269 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, 272 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) 276 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature) [all …]
|
D | debugger.cc | 402 static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status) in DecodeArray() 417 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status) in DecodeClass() 829 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { in GetClassName() 851 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) { in GetClassObject() 861 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) { in GetSuperclass() 876 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader() 885 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers() 1010 JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, in GetInstanceCounts() 1030 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::Ob… in GetInstances() 1122 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() [all …]
|
/art/runtime/jdwp/ |
D | jdwp_event.h | 49 RefTypeId refTypeId; 67 RefTypeId refTypeId; 71 RefTypeId refTypeId;
|
D | jdwp_handler.cc | 48 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) { in DescribeRefTypeId() 96 RefTypeId class_id, MethodId method_id, bool is_constructor) in FinishInvoke() 197 std::vector<RefTypeId> ids; in VM_ClassesBySignature() 267 expandBufAdd4BE(pReply, sizeof(RefTypeId)); in VM_IDSizes() 400 std::vector<JDWP::RefTypeId> classes; in VM_AllClassesImpl() 445 std::vector<RefTypeId> class_ids; in VM_InstanceCounts() 465 RefTypeId refTypeId = request.ReadRefTypeId(); in RT_Modifiers() 474 RefTypeId refTypeId = request.ReadRefTypeId(); in RT_GetValues() 492 RefTypeId refTypeId = request.ReadRefTypeId(); in RT_SourceFile() 507 RefTypeId refTypeId = request.ReadRefTypeId(); in RT_Status() [all …]
|
D | jdwp.h | 57 typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */ typedef 65 static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); } in SetRefTypeId() 70 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId() 83 RefTypeId class_id; 388 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lo… 418 RefTypeId ReadRefTypeId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
|
D | jdwp_request.cc | 123 RefTypeId Request::ReadRefTypeId() { in ReadRefTypeId() 124 RefTypeId id = Read8BE(); in ReadRefTypeId()
|
D | object_registry.h | 65 JDWP::RefTypeId AddRefType(mirror::Class* c)
|
D | object_registry.cc | 38 JDWP::RefTypeId ObjectRegistry::AddRefType(mirror::Class* c) { in AddRefType()
|
D | jdwp_event.cc | 965 RefTypeId field_type_id = registry->AddRefType(field->GetDeclaringClass()); in PostFieldEvent() 1254 RefTypeId class_id = registry->AddRefType(basket.locationClass); in PostClassPrepare()
|