Searched refs:object_id (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 56 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id) in WriteTaggedObject() argument 59 JdwpError rc = Dbg::GetObjectTag(object_id, &tag); in WriteTaggedObject() 62 expandBufAddObjectId(reply, object_id); in WriteTaggedObject() 86 ObjectId thread_id, ObjectId object_id, in RequestInvoke() argument 89 CHECK(!is_constructor || object_id != 0); in RequestInvoke() 94 thread_id, object_id); in RequestInvoke() 115 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 | 283 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) 289 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) 333 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) 352 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, 355 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id) 357 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id) 359 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected) 361 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) 400 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, 403 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, [all …]
|
D | debugger.cc | 790 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { in GetMonitorInfo() argument 792 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetMonitorInfo() 926 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, in GetReferringObjects() argument 931 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetReferringObjects() 943 JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { in DisableCollection() argument 945 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in DisableCollection() 949 gRegistry->DisableCollection(object_id); in DisableCollection() 953 JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { in EnableCollection() argument 955 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in EnableCollection() 963 gRegistry->EnableCollection(object_id); in EnableCollection() [all …]
|