Searched refs:RefTypeId (Results 1 – 8 of 8) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_event.h | 49 RefTypeId refTypeId; 67 RefTypeId refTypeId; 71 RefTypeId refTypeId;
|
D | jdwp_handler.cc | 53 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) { in DescribeRefTypeId() 90 RefTypeId class_id, MethodId method_id, bool is_constructor) in RequestInvoke() 157 std::vector<RefTypeId> ids; in VM_ClassesBySignature() 225 expandBufAdd4BE(pReply, sizeof(RefTypeId)); in VM_IDSizes() 357 std::vector<JDWP::RefTypeId> classes; in VM_AllClassesImpl() 402 std::vector<RefTypeId> class_ids; in VM_InstanceCounts() 422 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_Modifiers() 431 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_GetValues() 449 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_SourceFile() 464 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_Status() [all …]
|
D | jdwp.h | 62 typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */ typedef 70 static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); } in SetRefTypeId() 75 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId() 88 RefTypeId class_id; 424 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) REQUIRES_SHARED(Locks::mutator_lock_); 454 RefTypeId ReadRefTypeId() REQUIRES_SHARED(Locks::mutator_lock_);
|
D | object_registry.h | 71 JDWP::RefTypeId AddRefType(ObjPtr<mirror::Class> c) 80 JDWP::RefTypeId AddRefType(Handle<mirror::Class> c_h)
|
D | jdwp_request.cc | 124 RefTypeId Request::ReadRefTypeId() { in ReadRefTypeId() 125 RefTypeId id = Read8BE(); in ReadRefTypeId()
|
D | object_registry.cc | 45 JDWP::RefTypeId ObjectRegistry::AddRefType(ObjPtr<mirror::Class> c) { in AddRefType() 49 JDWP::RefTypeId ObjectRegistry::AddRefType(Handle<mirror::Class> c_h) { in AddRefType()
|
D | jdwp_event.cc | 998 RefTypeId field_type_id = registry->AddRefType(field->GetDeclaringClass()); in PostFieldEvent() 1253 RefTypeId class_id = registry->AddRefType(basket.locationClass); in PostClassPrepare()
|
/art/runtime/ |
D | debugger.h | 286 static std::string GetClassName(JDWP::RefTypeId id) 290 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) 292 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) 294 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 296 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 298 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) 300 static void GetClassList(std::vector<JDWP::RefTypeId>* classes) 302 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, 305 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) 309 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature) [all …]
|