Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc478 FieldId fieldId = request.ReadFieldId(); in RT_GetValues() local
479 JdwpError status = Dbg::GetStaticFieldValue(refTypeId, fieldId, pReply); in RT_GetValues()
667 FieldId fieldId = request.ReadFieldId(); in CT_SetValues() local
668 JDWP::JdwpTag fieldTag = Dbg::GetStaticFieldBasicTag(fieldId); in CT_SetValues()
672 VLOG(jdwp) << " --> field=" << fieldId << " tag=" << fieldTag << " --> " << value; in CT_SetValues()
673 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width); in CT_SetValues()
821 FieldId fieldId = request.ReadFieldId(); in OR_GetValues() local
822 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply); in OR_GetValues()
840 FieldId fieldId = request.ReadFieldId(); in OR_SetValues() local
842 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId); in OR_SetValues()
[all …]
Djdwp_event.h72 FieldId fieldId; member
Djdwp_event.cc516 if (!Dbg::MatchField(pMod->fieldOnly.refTypeId, pMod->fieldOnly.fieldId, basket.field)) { in ModsMatch()