Searched refs:refTypeId (Results 1 – 6 of 6) sorted by relevance
/dalvik/vm/ |
D | Debugger.h | 175 u1 dvmDbgGetClassObjectType(RefTypeId refTypeId); 176 char* dvmDbgGetSignature(RefTypeId refTypeId); 177 const char* dvmDbgGetSourceFile(RefTypeId refTypeId); 197 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id); 198 void dvmDbgOutputAllFields(RefTypeId refTypeId, bool withGeneric, 200 void dvmDbgOutputAllMethods(RefTypeId refTypeId, bool withGeneric, 202 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply); 203 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId, 205 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId id, 209 int dvmDbgGetStaticFieldTag(RefTypeId refTypeId, FieldId fieldId); [all …]
|
D | Debugger.c | 329 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id) in methodIdToMethod() argument 345 static Field* fieldIdToField(RefTypeId refTypeId, FieldId id) in fieldIdToField() argument 710 u1 dvmDbgGetClassObjectType(RefTypeId refTypeId) in dvmDbgGetClassObjectType() argument 712 ClassObject* clazz = refTypeIdToClassObject(refTypeId); in dvmDbgGetClassObjectType() 727 char* dvmDbgGetSignature(RefTypeId refTypeId) in dvmDbgGetSignature() argument 731 clazz = refTypeIdToClassObject(refTypeId); in dvmDbgGetSignature() 742 const char* dvmDbgGetSourceFile(RefTypeId refTypeId) in dvmDbgGetSourceFile() argument 746 clazz = refTypeIdToClassObject(refTypeId); in dvmDbgGetSourceFile() 1140 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id) in dvmDbgGetMethodName() argument 1144 meth = methodIdToMethod(refTypeId, id); in dvmDbgGetMethodName() [all …]
|
/dalvik/vm/jdwp/ |
D | JdwpHandler.c | 225 RefTypeId refTypeId; in handleVM_ClassesBySignature() local 237 if (!dvmDbgFindLoadedClassBySignature(classDescriptor, &refTypeId)) { in handleVM_ClassesBySignature() 253 dvmDbgGetClassInfo(refTypeId, &typeTag, &status, NULL); in handleVM_ClassesBySignature() 256 expandBufAddRefTypeId(pReply, refTypeId); in handleVM_ClassesBySignature() 549 RefTypeId refTypeId; in handleRT_Signature() local 551 refTypeId = dvmReadRefTypeId(&buf); in handleRT_Signature() 553 LOGV(" Req for signature of refTypeId=0x%llx\n", refTypeId); in handleRT_Signature() 554 signature = dvmDbgGetSignature(refTypeId); in handleRT_Signature() 567 RefTypeId refTypeId; in handleRT_Modifiers() local 570 refTypeId = dvmReadRefTypeId(&buf); in handleRT_Modifiers() [all …]
|
D | JdwpEvent.h | 62 RefTypeId refTypeId; member 66 RefTypeId refTypeId; member
|
D | JdwpEvent.c | 497 if (pMod->exceptionOnly.refTypeId != 0 && in modsMatch() 499 pMod->exceptionOnly.refTypeId)) in modsMatch() 1130 bool dvmJdwpPostClassPrepare(JdwpState* state, int tag, RefTypeId refTypeId, in dvmJdwpPostClassPrepare() argument 1140 basket.classId = refTypeId; in dvmJdwpPostClassPrepare() 1195 expandBufAdd8BE(pReq, refTypeId); in dvmJdwpPostClassPrepare() 1227 bool dvmJdwpPostClassUnload(JdwpState* state, RefTypeId refTypeId) in dvmJdwpPostClassUnload() argument
|
D | Jdwp.h | 224 bool dvmJdwpPostClassPrepare(JdwpState* state, int tag, RefTypeId refTypeId,
|