Lines Matching refs:width
1266 size_t width = GetTagWidth(element_tag); in OutputArray() local
1267 uint8_t* dst = expandBufAddSpace(pReply, count * width); in OutputArray()
1268 if (width == 8) { in OutputArray()
1271 } else if (width == 4) { in OutputArray()
1274 } else if (width == 2) { in OutputArray()
1279 memcpy(dst, &src[offset * width], count * width); in OutputArray()
1323 size_t width = GetTagWidth(element_tag); in SetArrayElements() local
1324 if (width == 8) { in SetArrayElements()
1326 } else if (width == 4) { in SetArrayElements()
1328 } else if (width == 2) { in SetArrayElements()
1900 static JDWP::JdwpError SetArtFieldValue(ArtField* f, mirror::Object* o, uint64_t value, int width) in SetArtFieldValue() argument
1907 CHECK_EQ(width, 1); in SetArtFieldValue()
1912 CHECK_EQ(width, 1); in SetArtFieldValue()
1917 CHECK_EQ(width, 2); in SetArtFieldValue()
1922 CHECK_EQ(width, 2); in SetArtFieldValue()
1928 CHECK_EQ(width, 4); in SetArtFieldValue()
1935 CHECK_EQ(width, 8); in SetArtFieldValue()
1971 uint64_t value, int width, bool is_static) in SetFieldValueImpl() argument
2005 return SetArtFieldValue(f, o.Get(), value, width); in SetFieldValueImpl()
2009 int width) { in SetFieldValue() argument
2010 return SetFieldValueImpl(object_id, field_id, value, width, false); in SetFieldValue()
2013 JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { in SetStaticFieldValue() argument
2014 return SetFieldValueImpl(0, field_id, value, width, true); in SetStaticFieldValue()
2605 size_t width = Dbg::GetTagWidth(reqSigByte); in GetLocalValues()
2606 uint8_t* ptr = expandBufAddSpace(pReply, width + 1); in GetLocalValues()
2607 error = Dbg::GetLocalValue(*stack_visitor, soa, slot, reqSigByte, ptr, width); in GetLocalValues()
2633 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { in GetLocalValue() argument
2643 CHECK_EQ(width, 1U); in GetLocalValue()
2653 CHECK_EQ(width, 1U); in GetLocalValue()
2664 CHECK_EQ(width, 2U); in GetLocalValue()
2674 CHECK_EQ(width, 4U); in GetLocalValue()
2684 CHECK_EQ(width, 4U); in GetLocalValue()
2700 CHECK_EQ(width, sizeof(JDWP::ObjectId)); in GetLocalValue()
2718 CHECK_EQ(width, 8U); in GetLocalValue()
2728 CHECK_EQ(width, 8U); in GetLocalValue()
2770 size_t width = Dbg::GetTagWidth(sigByte); in SetLocalValues()
2771 uint64_t value = request->ReadValue(width); in SetLocalValues()
2774 error = Dbg::SetLocalValue(thread, *stack_visitor, slot, sigByte, value, width); in SetLocalValues()
2794 JDWP::JdwpTag tag, uint64_t value, size_t width) { in SetLocalValue() argument
2805 CHECK_EQ(width, 1U); in SetLocalValue()
2812 CHECK_EQ(width, 2U); in SetLocalValue()
2818 CHECK_EQ(width, 4U); in SetLocalValue()
2824 CHECK_EQ(width, 4U); in SetLocalValue()
2836 CHECK_EQ(width, sizeof(JDWP::ObjectId)); in SetLocalValue()
2850 CHECK_EQ(width, 8U); in SetLocalValue()
2857 CHECK_EQ(width, 8U); in SetLocalValue()
4012 static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) { in WriteValue() argument
4013 switch (width) { in WriteValue()
4027 LOG(FATAL) << width; in WriteValue()
4155 size_t width = GetTagWidth(result_tag); in BuildInvokeReply() local
4157 if (width != 0) { in BuildInvokeReply()
4158 WriteValue(pReply, width, result_value); in BuildInvokeReply()