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()
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 …]
Djdwp.h61 typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */ typedef
69 static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); } in SetRefTypeId()
74 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId()
87 RefTypeId class_id;
420 std::string DescribeRefTypeId(const RefTypeId& ref_type_id) REQUIRES_SHARED(Locks::mutator_lock_);
450 RefTypeId ReadRefTypeId() REQUIRES_SHARED(Locks::mutator_lock_);
Dobject_registry.h71 JDWP::RefTypeId AddRefType(ObjPtr<mirror::Class> c)
80 JDWP::RefTypeId AddRefType(Handle<mirror::Class> c_h)
Djdwp_request.cc124 RefTypeId Request::ReadRefTypeId() { in ReadRefTypeId()
125 RefTypeId id = Read8BE(); in ReadRefTypeId()
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.h266 static std::string GetClassName(JDWP::RefTypeId id)
270 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id)
272 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id)
274 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
276 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
278 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
280 static void GetClassList(std::vector<JDWP::RefTypeId>* classes)
282 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
285 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids)
289 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
[all …]
Ddebugger.cc363 static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) in DecodeNonNullArray()
378 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) in DecodeClass()
703 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { in GetClassName()
727 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { in GetClassObject()
738 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { in GetSuperclass()
754 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader()
764 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers()
884 JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, in GetInstanceCounts()
904 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, in GetInstances()
996 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType()
[all …]