Home | History | Annotate | Download | only in jdwp

Lines Matching defs:method_id

44 std::string DescribeMethod(const MethodId& method_id) {
45 return StringPrintf("%#x (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
96 RefTypeId class_id, MethodId method_id, bool is_constructor)
104 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%x %s.%s", class_id,
105 method_id, Dbg::GetClassName(class_id).c_str(),
106 Dbg::GetMethodName(method_id).c_str());
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
692 MethodId method_id = request.ReadMethodId();
694 return FinishInvoke(state, request, pReply, thread_id, 0, class_id, method_id, false);
708 MethodId method_id = request.ReadMethodId();
718 return FinishInvoke(state, request, pReply, thread_id, object_id, class_id, method_id, true);
748 MethodId method_id = request.ReadMethodId();
750 Dbg::OutputLineTable(refTypeId, method_id, pReply);
759 MethodId method_id = request.ReadMethodId();
765 Dbg::OutputVariableTable(class_id, method_id, generic, pReply);
782 MethodId method_id = request.ReadMethodId();
785 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, bytecodes);
878 MethodId method_id = request.ReadMethodId();
880 return FinishInvoke(state, request, pReply, thread_id, object_id, class_id, method_id, false);