Lines Matching refs:pReply
888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader() argument
893 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); in GetClassLoader()
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers() argument
913 expandBufAdd4BE(pReply, access_flags); in GetModifiers()
1134 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument
1142 expandBufAdd1(pReply, type_tag); in GetReflectedType()
1143 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType()
1212 JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) in GetReferenceType() argument
1222 expandBufAdd1(pReply, type_tag); in GetReferenceType()
1223 expandBufAddRefTypeId(pReply, type_id); in GetReferenceType()
1303 …wpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) { in OutputArray() argument
1315 expandBufAdd1(pReply, element_tag); in OutputArray()
1316 expandBufAdd4BE(pReply, count); in OutputArray()
1320 uint8_t* dst = expandBufAddSpace(pReply, count * width); in OutputArray()
1341 expandBufAdd1(pReply, specific_tag); in OutputArray()
1342 expandBufAddObjectId(pReply, gRegistry->Add(element)); in OutputArray()
1583 …r Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) { in OutputDeclaredFields() argument
1593 expandBufAdd4BE(pReply, instance_field_count + static_field_count); in OutputDeclaredFields()
1597 expandBufAddFieldId(pReply, ToFieldId(f)); in OutputDeclaredFields()
1598 expandBufAddUtf8String(pReply, f->GetName()); in OutputDeclaredFields()
1599 expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); in OutputDeclaredFields()
1602 expandBufAddUtf8String(pReply, genericSignature); in OutputDeclaredFields()
1604 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); in OutputDeclaredFields()
1610 JDWP::ExpandBuf* pReply) { in OutputDeclaredMethods() argument
1620 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count); in OutputDeclaredMethods()
1624 expandBufAddMethodId(pReply, ToMethodId(m)); in OutputDeclaredMethods()
1625 expandBufAddUtf8String(pReply, m->GetName()); in OutputDeclaredMethods()
1626 expandBufAddUtf8String(pReply, m->GetSignature().ToString()); in OutputDeclaredMethods()
1629 expandBufAddUtf8String(pReply, genericSignature); in OutputDeclaredMethods()
1631 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags())); in OutputDeclaredMethods()
1636 JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in OutputDeclaredInterfaces() argument
1645 expandBufAdd4BE(pReply, interface_count); in OutputDeclaredInterfaces()
1647 expandBufAddRefTypeId(pReply, in OutputDeclaredInterfaces()
1653 void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) in OutputLineTable() argument
1657 JDWP::ExpandBuf* pReply; in OutputLineTable() member
1661 expandBufAdd8BE(pContext->pReply, address); in OutputLineTable()
1662 expandBufAdd4BE(pContext->pReply, line_number); in OutputLineTable()
1680 expandBufAdd8BE(pReply, start); in OutputLineTable()
1681 expandBufAdd8BE(pReply, end); in OutputLineTable()
1684 size_t numLinesOffset = expandBufGetLength(pReply); in OutputLineTable()
1685 expandBufAdd4BE(pReply, 0); in OutputLineTable()
1689 context.pReply = pReply; in OutputLineTable()
1696 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); in OutputLineTable()
1700 JDWP::ExpandBuf* pReply) { in OutputVariableTable() argument
1703 JDWP::ExpandBuf* pReply; in OutputVariableTable() member
1719 expandBufAdd8BE(pContext->pReply, startAddress); in OutputVariableTable()
1720 expandBufAddUtf8String(pContext->pReply, name); in OutputVariableTable()
1721 expandBufAddUtf8String(pContext->pReply, descriptor); in OutputVariableTable()
1723 expandBufAddUtf8String(pContext->pReply, signature); in OutputVariableTable()
1725 expandBufAdd4BE(pContext->pReply, endAddress - startAddress); in OutputVariableTable()
1726 expandBufAdd4BE(pContext->pReply, slot); in OutputVariableTable()
1736 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty)); in OutputVariableTable()
1739 size_t variable_count_offset = expandBufGetLength(pReply); in OutputVariableTable()
1740 expandBufAdd4BE(pReply, 0); in OutputVariableTable()
1744 context.pReply = pReply; in OutputVariableTable()
1755 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); in OutputVariableTable()
1759 JDWP::ExpandBuf* pReply) { in OutputMethodReturnValue() argument
1762 OutputJValue(tag, return_value, pReply); in OutputMethodReturnValue()
1766 JDWP::ExpandBuf* pReply) { in OutputFieldValue() argument
1769 OutputJValue(tag, field_value, pReply); in OutputFieldValue()
1798 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, in GetFieldValueImpl() argument
1849 Dbg::OutputJValue(tag, &field_value, pReply); in GetFieldValueImpl()
1855 JDWP::ExpandBuf* pReply) { in GetFieldValue() argument
1856 return GetFieldValueImpl(0, object_id, field_id, pReply, false); in GetFieldValue()
1859 …GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) { in GetStaticFieldValue() argument
1860 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); in GetStaticFieldValue()
1950 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { in OutputJValue() argument
1952 expandBufAdd1(pReply, tag); in OutputJValue()
1954 expandBufAdd1(pReply, return_value->GetI()); in OutputJValue()
1956 expandBufAdd2BE(pReply, return_value->GetI()); in OutputJValue()
1958 expandBufAdd4BE(pReply, return_value->GetI()); in OutputJValue()
1960 expandBufAdd8BE(pReply, return_value->GetJ()); in OutputJValue()
1967 expandBufAdd1(pReply, TagFromObject(soa, value)); in OutputJValue()
1968 expandBufAddObjectId(pReply, gRegistry->Add(value)); in OutputJValue()
1993 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { in GetThreadGroup() argument
2009 expandBufAddObjectId(pReply, JDWP::ObjectId(0)); in GetThreadGroup()
2019 expandBufAddObjectId(pReply, thread_group_id); in GetThreadGroup()
2044 JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { in GetThreadGroupName() argument
2059 expandBufAddUtf8String(pReply, thread_group_name); in GetThreadGroupName()
2063 JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { in GetThreadGroupParent() argument
2079 expandBufAddObjectId(pReply, parent_group_id); in GetThreadGroupParent()
2107 JDWP::ExpandBuf* pReply) { in GetThreadGroupChildren() argument
2119 expandBufAdd4BE(pReply, child_thread_ids.size()); in GetThreadGroupChildren()
2121 expandBufAddObjectId(pReply, child_thread_id); in GetThreadGroupChildren()
2129 expandBufAdd4BE(pReply, child_thread_groups_ids.size()); in GetThreadGroupChildren()
2131 expandBufAddObjectId(pReply, child_thread_group_id); in GetThreadGroupChildren()
2204 JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { in GetThreadDebugSuspendCount() argument
2213 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); in GetThreadDebugSuspendCount()
2508 JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { in GetLocalValues() argument
2531 expandBufAdd4BE(pReply, slot_count); /* "int values" */ in GetLocalValues()
2539 uint8_t* ptr = expandBufAddSpace(pReply, width+1); in GetLocalValues()