• Home
  • Raw
  • Download

Lines Matching refs:Dbg

41   return StringPrintf("%#x (%s)", field_id, Dbg::GetFieldName(field_id).c_str());  in DescribeField()
45 return StringPrintf("%#x (%s)", method_id, Dbg::GetMethodName(method_id).c_str()); in DescribeMethod()
50 Dbg::GetSignature(ref_type_id, signature); in DescribeRefTypeId()
68 JdwpError rc = Dbg::GetObjectTag(object_id, tag); in WriteTaggedObject()
104 method_id, Dbg::GetClassName(class_id).c_str(), in FinishInvoke()
105 Dbg::GetMethodName(method_id).c_str()); in FinishInvoke()
112 size_t width = Dbg::GetTagWidth(argTypes[i]); in FinishInvoke()
125 …JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.… in FinishInvoke()
138 size_t width = Dbg::GetTagWidth(resultTag); in FinishInvoke()
151 VLOG(jdwp) << " string '" << Dbg::StringToUtf8(resultValue) << "'"; in FinishInvoke()
190 Dbg::FindLoadedClassBySignature(classDescriptor.c_str(), ids); in VM_ClassesBySignature()
198 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, NULL); in VM_ClassesBySignature()
220 Dbg::GetThreads(0, thread_ids); in VM_AllThreads()
243 ObjectId thread_group_id = Dbg::GetSystemThreadGroupId(); in VM_TopLevelThreadGroups()
266 Dbg::Disposed(); in VM_Dispose()
280 Dbg::SuspendVM(); in VM_Suspend()
290 Dbg::ResumeVM(); in VM_Resume()
310 ObjectId stringId = Dbg::CreateString(str); in VM_CreateString()
345 Dbg::DisposeObject(object_id, reference_count); in VM_DisposeObjects()
392 Dbg::GetClassList(classes); in VM_AllClassesImpl()
401 JDWP::JdwpError status = Dbg::GetClassInfo(classes[i], &type_tag, &class_status, &descriptor); in VM_AllClassesImpl()
442 JdwpError rc = Dbg::GetInstanceCounts(class_ids, counts); in VM_InstanceCounts()
457 return Dbg::GetModifiers(refTypeId, pReply); in RT_Modifiers()
470 JdwpError status = Dbg::GetStaticFieldValue(refTypeId, fieldId, pReply); in RT_GetValues()
485 JdwpError status = Dbg::GetSourceFile(refTypeId, source_file); in RT_SourceFile()
501 JDWP::JdwpError status = Dbg::GetClassInfo(refTypeId, &type_tag, &class_status, NULL); in RT_Status()
515 return Dbg::OutputDeclaredInterfaces(refTypeId, pReply); in RT_Interfaces()
525 JdwpError status = Dbg::GetClassObject(refTypeId, class_object_id); in RT_ClassObject()
550 JdwpError status = Dbg::GetSignature(refTypeId, signature); in RT_Signature()
578 return Dbg::GetClassLoader(refTypeId, pReply); in RT_ClassLoader()
588 return Dbg::OutputDeclaredFields(refTypeId, true, pReply); in RT_FieldsWithGeneric()
595 return Dbg::OutputDeclaredFields(refTypeId, false, pReply); in RT_Fields()
605 return Dbg::OutputDeclaredMethods(refTypeId, true, pReply); in RT_MethodsWithGeneric()
612 return Dbg::OutputDeclaredMethods(refTypeId, false, pReply); in RT_Methods()
624 JdwpError rc = Dbg::GetInstances(class_id, max_count, instances); in RT_Instances()
639 JdwpError status = Dbg::GetSuperclass(class_id, superClassId); in CT_Superclass()
659 JDWP::JdwpTag fieldTag = Dbg::GetStaticFieldBasicTag(fieldId); in CT_SetValues()
660 size_t width = Dbg::GetTagWidth(fieldTag); in CT_SetValues()
664 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width); in CT_SetValues()
702 JdwpError status = Dbg::CreateObject(class_id, object_id); in CT_NewInstance()
721 JdwpError status = Dbg::CreateArrayObject(arrayTypeId, length, object_id); in AT_newInstance()
741 Dbg::OutputLineTable(refTypeId, method_id, pReply); in M_LineTable()
756 Dbg::OutputVariableTable(class_id, method_id, generic, pReply); in M_VariableTable()
776 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, bytecodes); in M_Bytecodes()
799 return Dbg::GetReferenceType(object_id, pReply); in OR_ReferenceType()
813 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply); in OR_GetValues()
833 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId); in OR_SetValues()
834 size_t width = Dbg::GetTagWidth(fieldTag); in OR_SetValues()
838 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width); in OR_SetValues()
850 return Dbg::GetMonitorInfo(object_id, reply); in OR_MonitorInfo()
877 return Dbg::DisableCollection(object_id); in OR_DisableCollection()
883 return Dbg::EnableCollection(object_id); in OR_EnableCollection()
890 JdwpError rc = Dbg::IsCollected(object_id, is_collected); in OR_IsCollected()
904 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, referring_objects); in OR_ReferringObjects()
918 std::string str(Dbg::StringToUtf8(stringObject)); in SR_Value()
935 JdwpError error = Dbg::GetThreadName(thread_id, name); in TR_Name()
955 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Suspend()
962 JdwpError result = Dbg::SuspendThread(thread_id); in TR_Suspend()
974 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Resume()
979 Dbg::ResumeThread(thread_id); in TR_Resume()
992 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); in TR_Status()
1011 return Dbg::GetThreadGroup(thread_id, pReply); in TR_ThreadGroup()
1027 JdwpError error = Dbg::GetThreadFrameCount(thread_id, actual_frame_count); in TR_Frames()
1046 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply); in TR_Frames()
1057 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, frame_count); in TR_FrameCount()
1072 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, monitors, stack_depths); in TR_OwnedMonitors()
1105 JdwpError rc = Dbg::GetContendedMonitor(thread_id, contended_monitor); in TR_CurrentContendedMonitor()
1115 return Dbg::Interrupt(thread_id); in TR_Interrupt()
1127 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply); in TR_DebugSuspendCount()
1139 expandBufAddUtf8String(pReply, Dbg::GetThreadGroupName(thread_group_id)); in TGR_Name()
1152 ObjectId parentGroup = Dbg::GetThreadGroupParent(thread_group_id); in TGR_Parent()
1167 Dbg::GetThreads(thread_group_id, thread_ids); in TGR_Children()
1174 Dbg::GetChildThreadGroups(thread_group_id, child_thread_groups_ids); in TGR_Children()
1191 JdwpError status = Dbg::GetArrayLength(array_id, length); in AR_Length()
1210 return Dbg::OutputArray(array_id, offset, length, pReply); in AR_GetValues()
1221 return Dbg::SetArrayElements(array_id, offset, count, request); in AR_SetValues()
1406 size_t width = Dbg::GetTagWidth(reqSigByte); in SF_GetValues()
1408 Dbg::GetLocalValue(thread_id, frame_id, slot, reqSigByte, ptr, width); in SF_GetValues()
1426 size_t width = Dbg::GetTagWidth(sigByte); in SF_SetValues()
1430 Dbg::SetLocalValue(thread_id, frame_id, slot, sigByte, value, width); in SF_SetValues()
1442 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id); in SF_ThisObject()
1460 return Dbg::GetReflectedType(class_object_id, pReply); in COR_ReflectedType()
1471 if (Dbg::DdmHandlePacket(request, &replyBuf, &replyLen)) { in DDM_Chunk()
1661 Dbg::GoActive(); in ProcessRequest()