Lines Matching refs:method_id
45 std::string DescribeMethod(const MethodId& method_id) { in DescribeMethod() argument
46 return StringPrintf("%#" PRIx64 " (%s)", method_id, Dbg::GetMethodName(method_id).c_str()); in DescribeMethod()
86 RefTypeId class_id, MethodId method_id, bool is_constructor) in RequestInvoke() argument
95 class_id, method_id, Dbg::GetClassName(class_id).c_str(), in RequestInvoke()
96 Dbg::GetMethodName(method_id).c_str()); in RequestInvoke()
115 class_id, method_id, arg_count, in RequestInvoke()
647 MethodId method_id = request->ReadMethodId(); in CT_InvokeMethod() local
649 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in CT_InvokeMethod()
664 MethodId method_id = request->ReadMethodId(); in CT_NewInstance() local
671 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true); in CT_NewInstance()
698 MethodId method_id = request->ReadMethodId(); in M_LineTable() local
700 Dbg::OutputLineTable(refTypeId, method_id, pReply); in M_LineTable()
709 MethodId method_id = request->ReadMethodId(); in M_VariableTable() local
715 Dbg::OutputVariableTable(class_id, method_id, generic, pReply); in M_VariableTable()
732 MethodId method_id = request->ReadMethodId(); in M_Bytecodes() local
735 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes); in M_Bytecodes()
829 MethodId method_id = request->ReadMethodId(); in OR_InvokeMethod() local
831 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false); in OR_InvokeMethod()