Searched defs:pFieldId (Results 1 - 7 of 7) sorted by relevance

/dalvik/vm/oo/
H A DResolve.cpp386 const DexFieldId* pFieldId; local
392 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx);
397 resClass = dvmResolveClass(referrer, pFieldId->classIdx, false);
404 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx),
405 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx));
408 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx));
448 const DexFieldId* pFieldId; local
451 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx);
456 resClass = dvmResolveClass(referrer, pFieldId->classIdx, false);
463 dexStringById(pDvmDex->pDexFile, pFieldId
[all...]
H A DClass.cpp2339 const DexFieldId* pFieldId; local
2341 pFieldId = dexGetFieldId(pDexFile, pDexSField->fieldIdx);
2344 sfield->name = dexStringById(pDexFile, pFieldId->nameIdx);
2345 sfield->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
2363 const DexFieldId* pFieldId; local
2365 pFieldId = dexGetFieldId(pDexFile, pDexIField->fieldIdx);
2368 ifield->name = dexStringById(pDexFile, pFieldId->nameIdx);
2369 ifield->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
/dalvik/vm/analysis/
H A DOptimize.cpp524 const DexFieldId* pFieldId; local
527 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx);
532 resClass = dvmOptResolveClass(referrer, pFieldId->classIdx, pFailure);
541 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx),
542 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx));
546 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx));
554 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx));
597 const DexFieldId* pFieldId; local
600 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx);
605 resClass = dvmOptResolveClass(referrer, pFieldId
[all...]
H A DCodeVerify.cpp2767 const DexFieldId* pFieldId; local
2769 pFieldId = dexGetFieldId(pDexFile, fieldIdx);
2772 dexStringById(pDexFile, pFieldId->nameIdx),
2773 dexStringByTypeIdx(pDexFile, pFieldId->classIdx));
/dalvik/vm/interp/
H A DInterp.cpp1323 const DexFieldId* pFieldId = dexGetFieldId(pDvmDex->pDexFile, ref); local
1324 ref = pFieldId->classIdx;
1356 const DexFieldId* pFieldId = dexGetFieldId(pDvmDex->pDexFile, ref); local
1357 const char* className = dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->classIdx);
1358 const char* fieldName = dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx);
/dalvik/vm/reflect/
H A DAnnotation.cpp1884 const DexFieldId* pFieldId = dexGetFieldId(pDexFile, idx); local
1885 const char* str = dexStringByTypeIdx(pDexFile, pFieldId->classIdx);
1889 str = dexStringById(pDexFile, pFieldId->nameIdx);
1892 str = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
/dalvik/dexdump/
H A DDexDump.cpp677 const DexFieldId* pFieldId; local
682 pFieldId = dexGetFieldId(pDexFile, fieldIdx);
683 pFieldInfo->name = dexStringById(pDexFile, pFieldId->nameIdx);
684 pFieldInfo->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
686 dexStringByTypeIdx(pDexFile, pFieldId->classIdx);
1278 const DexFieldId* pFieldId; local
1290 pFieldId = dexGetFieldId(pDexFile, pSField->fieldIdx);
1291 name = dexStringById(pDexFile, pFieldId->nameIdx);
1292 typeDescriptor = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
1293 backDescriptor = dexStringByTypeIdx(pDexFile, pFieldId
[all...]

Completed in 111 milliseconds