Home
last modified time | relevance | path

Searched refs:RefTypeId (Results 1 – 9 of 9) sorted by relevance

/art/runtime/jdwp/
Djdwp_event.h49 RefTypeId refTypeId;
67 RefTypeId refTypeId;
71 RefTypeId refTypeId;
Djdwp_handler.cc53 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()
356 std::vector<JDWP::RefTypeId> classes; in VM_AllClassesImpl()
401 std::vector<RefTypeId> class_ids; in VM_InstanceCounts()
421 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_Modifiers()
430 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_GetValues()
448 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_SourceFile()
463 RefTypeId refTypeId = request->ReadRefTypeId(); in RT_Status()
[all …]
Djdwp.h62 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_);
Djdwp_request.cc124 RefTypeId Request::ReadRefTypeId() { in ReadRefTypeId()
125 RefTypeId id = Read8BE(); in ReadRefTypeId()
Dobject_registry.h71 JDWP::RefTypeId AddRefType(ObjPtr<mirror::Class> c)
80 JDWP::RefTypeId AddRefType(Handle<mirror::Class> c_h)
Dobject_registry.cc45 JDWP::RefTypeId ObjectRegistry::AddRefType(ObjPtr<mirror::Class> c) { in AddRefType()
49 JDWP::RefTypeId ObjectRegistry::AddRefType(Handle<mirror::Class> c_h) { in AddRefType()
Djdwp_event.cc998 RefTypeId field_type_id = registry->AddRefType(field->GetDeclaringClass()); in PostFieldEvent()
1253 RefTypeId class_id = registry->AddRefType(basket.locationClass); in PostClassPrepare()
/art/runtime/
Ddebugger.h296 static std::string GetClassName(JDWP::RefTypeId id)
300 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id)
302 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id)
304 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
306 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
308 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
310 static void GetClassList(std::vector<JDWP::RefTypeId>* classes)
312 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
315 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids)
319 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
[all …]
Ddebugger.cc416 static ObjPtr<mirror::Array> DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) in DecodeNonNullArray()
431 static ObjPtr<mirror::Class> DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) in DecodeClass()
767 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { in GetClassName()
791 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { in GetClassObject()
802 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { in GetSuperclass()
818 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader()
828 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers()
949 JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, in GetInstanceCounts()
969 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, in GetInstances()
1065 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType()
[all …]