/dalvik/libdex/ |
D | DexProto.h | 82 const DexFile* pDexFile, const DexMethodId* pMethodId) in dexProtoSetFromMethodId() argument 85 pProto->protoIdx = pMethodId->protoIdx; in dexProtoSetFromMethodId() 118 const DexMethodId* pMethodId, DexStringCache* pCache) in dexGetDescriptorFromMethodId() argument 122 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId); in dexGetDescriptorFromMethodId() 132 const DexMethodId* pMethodId) in dexCopyDescriptorFromMethodId() argument 136 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId); in dexCopyDescriptorFromMethodId()
|
/dalvik/dexlist/ |
D | DexList.c | 94 const DexMethodId* pMethodId; in dumpMethod() local 104 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod() 105 methodName = dexStringById(pDexFile, pMethodId->nameIdx); in dumpMethod() 107 classDescriptor = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in dumpMethod() 125 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx, in dumpMethod() 129 char* desc = dexCopyDescriptorFromMethodId(pDexFile, pMethodId); in dumpMethod()
|
/dalvik/vm/oo/ |
D | Resolve.c | 181 const DexMethodId* pMethodId; in dvmResolveMethod() local 188 pMethodId = dexGetMethodId(pDvmDex->pDexFile, methodIdx); in dvmResolveMethod() 190 resClass = dvmResolveClass(referrer, pMethodId->classIdx, false); in dvmResolveMethod() 204 const char* name = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveMethod() 206 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmResolveMethod() 288 const DexMethodId* pMethodId; in dvmResolveInterfaceMethod() local 294 pMethodId = dexGetMethodId(pDvmDex->pDexFile, methodIdx); in dvmResolveInterfaceMethod() 296 resClass = dvmResolveClass(referrer, pMethodId->classIdx, false); in dvmResolveInterfaceMethod() 334 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveInterfaceMethod() 337 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmResolveInterfaceMethod()
|
D | Class.c | 2071 const DexMethodId* pMethodId; in loadMethodFromDex() local 2074 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in loadMethodFromDex() 2076 meth->name = dexStringById(pDexFile, pMethodId->nameIdx); in loadMethodFromDex() 2077 dexProtoSetFromMethodId(&meth->prototype, pDexFile, pMethodId); in loadMethodFromDex()
|
/dalvik/vm/analysis/ |
D | Optimize.c | 733 const DexMethodId* pMethodId; in dvmOptResolveMethod() local 736 pMethodId = dexGetMethodId(pDvmDex->pDexFile, methodIdx); in dvmOptResolveMethod() 738 resClass = dvmOptResolveClass(referrer, pMethodId->classIdx, pFailure); in dvmOptResolveMethod() 745 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx)); in dvmOptResolveMethod() 763 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmOptResolveMethod() 767 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx), &proto); in dvmOptResolveMethod() 771 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx), &proto); in dvmOptResolveMethod() 776 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx)); in dvmOptResolveMethod() 802 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx), in dvmOptResolveMethod() 950 const DexMethodId* pMethodId; in dvmOptResolveInterfaceMethod() local [all …]
|
D | RegisterMap.c | 2364 const DexMethodId* pMethodId; 2369 pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB); 2370 methodName = dexStringById(pDexFile, pMethodId->nameIdx); 2371 methodDesc = dexCopyDescriptorFromMethodId(pDexFile, pMethodId); 2372 classDescriptor = dexStringByTypeIdx(pDexFile, pMethodId->classIdx);
|
D | CodeVerify.c | 1065 const DexMethodId* pMethodId; in verifyInvocationArgs() local 1070 pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB); in verifyInvocationArgs() 1071 methodName = dexStringById(pDexFile, pMethodId->nameIdx); in verifyInvocationArgs() 1072 methodDesc = dexCopyDescriptorFromMethodId(pDexFile, pMethodId); in verifyInvocationArgs() 1073 classDescriptor = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in verifyInvocationArgs()
|
/dalvik/dexdump/ |
D | DexDump.c | 616 const DexMethodId *pMethodId in dumpPositions() local 619 = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in dumpPositions() 621 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx, in dumpPositions() 642 const DexMethodId *pMethodId in dumpLocals() local 645 = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in dumpLocals() 647 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx, in dumpLocals() 656 const DexMethodId* pMethodId; in getMethodInfo() local 661 pMethodId = dexGetMethodId(pDexFile, methodIdx); in getMethodInfo() 662 pMethInfo->name = dexStringById(pDexFile, pMethodId->nameIdx); in getMethodInfo() 663 pMethInfo->signature = dexCopyDescriptorFromMethodId(pDexFile, pMethodId); in getMethodInfo() [all …]
|
/dalvik/vm/interp/ |
D | Interp.c | 1050 const DexMethodId* pMethodId = dexGetMethodId(pDvmDex->pDexFile, ref); in classNameFromIndex() local 1051 ref = pMethodId->classIdx; in classNameFromIndex() 1112 const DexMethodId* pMethodId; in methodNameFromIndex() local 1121 pMethodId = dexGetMethodId(pDvmDex->pDexFile, ref); in methodNameFromIndex() 1122 className = dexStringByTypeIdx(pDvmDex->pDexFile, pMethodId->classIdx); in methodNameFromIndex() 1123 methodName = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in methodNameFromIndex()
|
/dalvik/vm/reflect/ |
D | Annotation.c | 296 const DexMethodId* pMethodId; in resolveAmbiguousMethod() local 305 pMethodId = dexGetMethodId(pDexFile, methodIdx); in resolveAmbiguousMethod() 306 resClass = dvmResolveClass(referrer, pMethodId->classIdx, true); in resolveAmbiguousMethod() 319 name = dexStringById(pDexFile, pMethodId->nameIdx); in resolveAmbiguousMethod() 322 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId); in resolveAmbiguousMethod() 1539 const DexMethodId* pMethodId = dexGetMethodId(pDexFile, methodIdx); in compareMethodStr() local 1540 const char* str = dexStringByTypeIdx(pDexFile, pMethodId->classIdx); in compareMethodStr() 1544 str = dexStringById(pDexFile, pMethodId->nameIdx); in compareMethodStr() 1548 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId); in compareMethodStr()
|