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

/art/runtime/jdwp/
H A Djdwp_handler.cc59 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
62 JdwpError rc = Dbg::GetObjectTag(object_id, &tag);
65 expandBufAddObjectId(reply, object_id);
85 * If "is_constructor" is set, this returns "object_id" rather than the
89 ObjectId thread_id, ObjectId object_id,
92 CHECK(!is_constructor || object_id != 0);
96 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
97 thread_id, object_id);
118 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id,
309 ObjectId object_id local
674 ObjectId object_id; local
690 ObjectId object_id; local
786 ObjectId object_id = request->ReadObjectId(); local
795 ObjectId object_id = request->ReadObjectId(); local
815 ObjectId object_id = request->ReadObjectId(); local
837 ObjectId object_id = request->ReadObjectId(); local
855 ObjectId object_id = request->ReadObjectId(); local
865 ObjectId object_id = request->ReadObjectId(); local
871 ObjectId object_id = request->ReadObjectId(); local
877 ObjectId object_id = request->ReadObjectId(); local
886 ObjectId object_id = request->ReadObjectId(); local
1389 ObjectId object_id; local
[all...]
/art/runtime/
H A Ddebugger.h287 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
296 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag)
340 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
359 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
362 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id)
364 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id)
366 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected)
368 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
409 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
412 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDW
[all...]
H A Ddebugger.cc785 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { argument
787 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
923 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, argument
928 ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error);
941 JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { argument
943 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
947 gRegistry->DisableCollection(object_id);
951 JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { argument
953 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
961 gRegistry->EnableCollection(object_id);
965 IsCollected(JDWP::ObjectId object_id, bool* is_collected) argument
981 DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) argument
1068 GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) argument
1126 GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) argument
1841 GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) argument
1959 SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, int width) argument
3893 PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, JDWP::ObjectId object_id, JDWP::RefTypeId class_id, JDWP::MethodId method_id, uint32_t arg_count, uint64_t arg_values[], JDWP::JdwpTag* arg_types, uint32_t options) argument
[all...]

Completed in 32 milliseconds