Lines Matching refs:pDexFile
90 className = dexStringByTypeIdx(pDvmDex->pDexFile, classIdx); in dvmResolveClass()
158 dexStringByTypeIdx(pDvmDex->pDexFile, classIdx)); in dvmResolveClass()
188 pMethodId = dexGetMethodId(pDvmDex->pDexFile, methodIdx); in dvmResolveMethod()
203 const char* name = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveMethod()
205 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmResolveMethod()
292 pMethodId = dexGetMethodId(pDvmDex->pDexFile, methodIdx); in dvmResolveInterfaceMethod()
331 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveInterfaceMethod()
334 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmResolveInterfaceMethod()
392 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx); in dvmResolveInstField()
404 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmResolveInstField()
405 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx)); in dvmResolveInstField()
408 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmResolveInstField()
451 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx); in dvmResolveStaticField()
463 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmResolveStaticField()
464 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx)); in dvmResolveStaticField()
467 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmResolveStaticField()
524 utf8 = dexStringAndSizeById(pDvmDex->pDexFile, stringIdx, &utf16Size); in dvmResolveString()