Home | History | Annotate | Download | only in runtime

Lines Matching refs:result_tag

4127   JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty());
4128 const bool is_object_result = (result_tag == JDWP::JT_OBJECT);
4149 if (new_tag != result_tag) {
4150 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag;
4151 result_tag = new_tag;
4159 DCHECK(IsPrimitiveTag(result_tag));
4166 DCHECK_EQ(JDWP::JT_VOID, result_tag);
4172 result_tag = TagFromObject(soa, decoded_ref.Get());
4177 result_tag = TagFromObject(soa, pReq->receiver.Read());
4181 result_tag = JDWP::JT_OBJECT;
4194 VLOG(jdwp) << " --> returned " << result_tag
4199 if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) {
4214 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId);
4217 void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag,
4222 size_t width = GetTagWidth(result_tag);
4223 JDWP::expandBufAdd1(pReply, result_tag);