Searched refs:dexStringById (Results 1 – 12 of 12) sorted by relevance
/dalvik/vm/oo/ |
D | Resolve.cpp | 203 const char* name = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveMethod() 331 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveInterfaceMethod() 404 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmResolveInstField() 408 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmResolveInstField() 463 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmResolveStaticField() 467 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmResolveStaticField()
|
D | Class.cpp | 2157 meth->name = dexStringById(pDexFile, pMethodId->nameIdx); in loadMethodFromDex() 2344 sfield->name = dexStringById(pDexFile, pFieldId->nameIdx); in loadSFieldFromDex() 2368 ifield->name = dexStringById(pDexFile, pFieldId->nameIdx); in loadIFieldFromDex()
|
/dalvik/vm/analysis/ |
D | Optimize.cpp | 541 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmOptResolveInstField() 546 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmOptResolveInstField() 554 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmOptResolveInstField() 614 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx); in dvmOptResolveStaticField() 781 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx)); in dvmOptResolveMethod() 803 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx), &proto); in dvmOptResolveMethod() 807 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx), &proto); in dvmOptResolveMethod() 812 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx)); in dvmOptResolveMethod() 838 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx), in dvmOptResolveMethod() 1010 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmOptResolveInterfaceMethod()
|
D | CodeVerify.cpp | 1129 const char* methodName = dexStringById(pDexFile, pMethodId->nameIdx); in verifyInvocationArgs() 2772 dexStringById(pDexFile, pFieldId->nameIdx), in getStaticField()
|
/dalvik/dexlist/ |
D | DexList.cpp | 108 methodName = dexStringById(pDexFile, pMethodId->nameIdx); in dumpMethod() 175 fileName = dexStringById(pDexFile, pClassDef->sourceFileIdx); in dumpClass()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 664 pMethInfo->name = dexStringById(pDexFile, pMethodId->nameIdx); in getMethodInfo() 683 pFieldInfo->name = dexStringById(pDexFile, pFieldId->nameIdx); in getFieldInfo() 772 dexStringById(pDexFile, index), width, index); in indexString() 1148 name = dexStringById(pDexFile, pMethodId->nameIdx); in dumpMethod() 1291 name = dexStringById(pDexFile, pFieldId->nameIdx); in dumpSField() 1496 fileName = dexStringById(pDexFile, pClassDef->sourceFileIdx); in dumpClass() 1578 name = dexStringById(pDexFile, pMethodId->nameIdx); in dumpMethodMap()
|
/dalvik/libdex/ |
D | DexFile.h | 629 DEX_INLINE const char* dexStringById(const DexFile* pDexFile, u4 idx) { in dexStringById() function 651 return dexStringById(pDexFile, typeId->descriptorIdx); in dexStringByTypeIdx() 748 return dexStringById(pDexFile, pClassDef->sourceFileIdx); in dexGetSourceFile()
|
D | DexDebugInfo.cpp | 92 return dexStringById(pDexFile, stringIdx - 1); in readStringIdx()
|
D | DexProto.cpp | 129 return dexStringById(pProto->dexFile, protoId->shortyIdx); in dexProtoGetShorty()
|
D | DexSwapVerify.cpp | 593 dexStringById(state->pDexFile, item->descriptorIdx); in crossVerifyTypeIdItem() 674 dexStringById(state->pDexFile, item->shortyIdx); in crossVerifyProtoIdItem() 792 s = dexStringById(state->pDexFile, item->nameIdx); in crossVerifyFieldIdItem() 858 s = dexStringById(state->pDexFile, item->nameIdx); in crossVerifyMethodIdItem() 2312 const char* name = dexStringById(state->pDexFile, idx); in verifyEncodedAnnotation()
|
/dalvik/vm/reflect/ |
D | Annotation.cpp | 258 name = dexStringById(pDexFile, pMethodId->nameIdx); in resolveAmbiguousMethod() 672 name = dexStringById(pDexFile, elementNameIdx); in createAnnotationMember() 1115 elemName = dexStringById(pDexFile, elementNameIdx); in searchEncodedAnnotation() 1571 str = dexStringById(pDexFile, pMethodId->nameIdx); in compareMethodStr() 1889 str = dexStringById(pDexFile, pFieldId->nameIdx); in compareFieldStr()
|
/dalvik/vm/interp/ |
D | Interp.cpp | 1358 const char* fieldName = dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx); in fieldNameFromIndex() 1383 const char* methodName = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in methodNameFromIndex()
|