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()
204 const char* name = dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveMethod()
206 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmResolveMethod()
294 pMethodId = dexGetMethodId(pDvmDex->pDexFile, methodIdx); in dvmResolveInterfaceMethod()
334 dexStringById(pDvmDex->pDexFile, pMethodId->nameIdx); in dvmResolveInterfaceMethod()
337 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId); in dvmResolveInterfaceMethod()
408 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx); in dvmResolveInstField()
420 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmResolveInstField()
421 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx)); in dvmResolveInstField()
424 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmResolveInstField()
467 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx); in dvmResolveStaticField()
479 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), in dvmResolveStaticField()
480 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx)); in dvmResolveStaticField()
483 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); in dvmResolveStaticField()
540 utf8 = dexStringAndSizeById(pDvmDex->pDexFile, stringIdx, &utf16Size); in dvmResolveString()