Home | History | Annotate | Download | only in jdwp

Lines Matching defs:resultValue

123   uint64_t resultValue;
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 : 0;
141 WriteValue(pReply, width, resultValue);
146 VLOG(jdwp) << " --> returned " << resultTag << StringPrintf(" %#llx (except=%#llx)", resultValue, exceptObjId);
150 if (resultValue != 0) {
151 VLOG(jdwp) << " string '" << Dbg::StringToUtf8(resultValue) << "'";