Searched defs:object_id (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_handler.cc65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
68 JdwpError rc = Dbg::GetObjectTag(object_id, tag);
71 expandBufAddObjectId(reply, object_id);
91 * If "is_constructor" is set, this returns "object_id" rather than the
95 ObjectId thread_id, ObjectId object_id,
98 CHECK(!is_constructor || object_id != 0);
102 VLOG(jdwp) << StringPrintf(" --> thread_id=%#llx object_id=%#llx", thread_id, object_id);
125 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
135 resultValue = (exceptObjId == 0) ? object_id
343 ObjectId object_id = request.ReadObjectId(); local
701 ObjectId object_id; local
720 ObjectId object_id; local
798 ObjectId object_id = request.ReadObjectId(); local
807 ObjectId object_id = request.ReadObjectId(); local
827 ObjectId object_id = request.ReadObjectId(); local
849 ObjectId object_id = request.ReadObjectId(); local
866 ObjectId object_id = request.ReadObjectId(); local
876 ObjectId object_id = request.ReadObjectId(); local
882 ObjectId object_id = request.ReadObjectId(); local
888 ObjectId object_id = request.ReadObjectId(); local
897 ObjectId object_id = request.ReadObjectId(); local
1441 ObjectId object_id; local
[all...]
/art/runtime/
H A Ddebugger.cc660 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
662 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
795 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
798 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
811 JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
813 gRegistry->DisableCollection(object_id);
817 JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
819 gRegistry->EnableCollection(object_id);
823 JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
825 is_collected = gRegistry->IsCollected(object_id);
951 GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) argument
1498 GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) argument
1558 SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, int width) argument
2623 InvokeMethod(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, JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptionId) argument
[all...]

Completed in 56 milliseconds