Lines Matching refs:refTypeId

327 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id)
329 // TODO? verify "id" is actually a method in "refTypeId"
343 static Field* fieldIdToField(RefTypeId refTypeId, FieldId id)
345 // TODO? verify "id" is actually a field in "refTypeId"
720 u1 dvmDbgGetClassObjectType(RefTypeId refTypeId)
722 ClassObject* clazz = refTypeIdToClassObject(refTypeId);
735 const char* dvmDbgGetSignature(RefTypeId refTypeId)
739 clazz = refTypeIdToClassObject(refTypeId);
750 const char* dvmDbgGetSourceFile(RefTypeId refTypeId)
754 clazz = refTypeIdToClassObject(refTypeId);
1144 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id)
1148 meth = methodIdToMethod(refTypeId, id);
1173 void dvmDbgOutputAllFields(RefTypeId refTypeId, bool withGeneric,
1176 ClassObject* clazz = refTypeIdToClassObject(refTypeId);
1211 void dvmDbgOutputAllMethods(RefTypeId refTypeId, bool withGeneric,
1223 clazz = refTypeIdToClassObject(refTypeId);
1264 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply)
1269 clazz = refTypeIdToClassObject(refTypeId);
1303 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId,
1312 method = methodIdToMethod(refTypeId, methodId);
1409 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId methodId,
1417 method = methodIdToMethod(refTypeId, methodId);
1451 u1 dvmDbgGetStaticFieldBasicTag(RefTypeId refTypeId, FieldId fieldId)
1453 const Field* field = fieldIdToField(refTypeId, fieldId);
1560 void dvmDbgGetStaticFieldValue(RefTypeId refTypeId, FieldId fieldId,
1563 StaticField* sfield = (StaticField*) fieldIdToField(refTypeId, fieldId);
1616 void dvmDbgSetStaticFieldValue(RefTypeId refTypeId, FieldId fieldId,
1619 StaticField* sfield = (StaticField*) fieldIdToField(refTypeId, fieldId);