Searched refs:object_id (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 55 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id) in WriteTaggedObject() argument 58 JdwpError rc = Dbg::GetObjectTag(object_id, &tag); in WriteTaggedObject() 61 expandBufAddObjectId(reply, object_id); in WriteTaggedObject() 85 ObjectId thread_id, ObjectId object_id, in RequestInvoke() argument 88 CHECK(!is_constructor || object_id != 0); in RequestInvoke() 93 thread_id, object_id); in RequestInvoke() 114 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, in RequestInvoke() 306 ObjectId object_id = request->ReadObjectId(); in VM_DisposeObjects() local 308 Dbg::DisposeObject(object_id, reference_count); in VM_DisposeObjects() 666 ObjectId object_id; in CT_NewInstance() local [all …]
|
/art/runtime/ |
D | debugger.h | 300 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) 306 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) 350 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) 371 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, 374 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id) 376 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id) 378 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected) 380 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) 419 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, 422 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, [all …]
|
D | debugger.cc | 851 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { in GetMonitorInfo() argument 853 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetMonitorInfo() 988 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, in GetReferringObjects() argument 993 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetReferringObjects() 1005 JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { in DisableCollection() argument 1007 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in DisableCollection() 1011 gRegistry->DisableCollection(object_id); in DisableCollection() 1015 JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { in EnableCollection() argument 1017 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in EnableCollection() 1025 gRegistry->EnableCollection(object_id); in EnableCollection() [all …]
|