Home
last modified time | relevance | path

Searched refs:object_id (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc59 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id) in WriteTaggedObject() argument
62 JdwpError rc = Dbg::GetObjectTag(object_id, &tag); in WriteTaggedObject()
65 expandBufAddObjectId(reply, object_id); in WriteTaggedObject()
89 ObjectId thread_id, ObjectId object_id, in RequestInvoke() argument
92 CHECK(!is_constructor || object_id != 0); in RequestInvoke()
97 thread_id, object_id); in RequestInvoke()
118 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, in RequestInvoke()
308 ObjectId object_id = request->ReadObjectId(); in VM_DisposeObjects() local
310 Dbg::DisposeObject(object_id, reference_count); in VM_DisposeObjects()
673 ObjectId object_id; in CT_NewInstance() local
[all …]
/art/runtime/
Ddebugger.h317 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
326 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag)
372 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
391 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
394 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id)
396 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id)
398 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected)
400 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
441 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
444 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
[all …]
Ddebugger.cc849 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { in GetMonitorInfo() argument
853 Handle<mirror::Object> o = hs.NewHandle(gRegistry->Get<mirror::Object*>(object_id, &error)); in GetMonitorInfo()
992 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, in GetReferringObjects() argument
997 ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetReferringObjects()
1010 JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { in DisableCollection() argument
1012 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in DisableCollection()
1016 gRegistry->DisableCollection(object_id); in DisableCollection()
1020 JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { in EnableCollection() argument
1022 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in EnableCollection()
1030 gRegistry->EnableCollection(object_id); in EnableCollection()
[all …]