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

/dalvik/vm/oo/
H A DResolve.cpp393 const DexFieldId* pFieldId; local
399 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx);
404 resClass = dvmResolveClass(referrer, pFieldId->classIdx, false);
411 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx),
412 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx));
415 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx));
455 const DexFieldId* pFieldId; local
458 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx);
463 resClass = dvmResolveClass(referrer, pFieldId->classIdx, false);
470 dexStringById(pDvmDex->pDexFile, pFieldId
[all...]
H A DClass.cpp2342 const DexFieldId* pFieldId; local
2344 pFieldId = dexGetFieldId(pDexFile, pDexSField->fieldIdx);
2347 sfield->name = dexStringById(pDexFile, pFieldId->nameIdx);
2348 sfield->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
2366 const DexFieldId* pFieldId; local
2368 pFieldId = dexGetFieldId(pDexFile, pDexIField->fieldIdx);
2371 ifield->name = dexStringById(pDexFile, pFieldId->nameIdx);
2372 ifield->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
/dalvik/vm/analysis/
H A DOptimize.cpp525 const DexFieldId* pFieldId; local
528 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx);
533 resClass = dvmOptResolveClass(referrer, pFieldId->classIdx, pFailure);
542 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx),
543 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx));
547 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx));
555 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx));
598 const DexFieldId* pFieldId; local
601 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx);
606 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/native/
H A Ddalvik_system_VMRuntime.cpp315 const DexFieldId* pFieldId = dexGetFieldId(pDexFile, fieldIdx); local
316 ClassObject* clazz = dvmDexGetResolvedClass(pDvmDex, pFieldId->classIdx);
325 const char* fieldName = dexStringById(pDexFile, pFieldId->nameIdx);
326 const char* signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
/dalvik/vm/interp/
H A DInterp.cpp1303 const DexFieldId* pFieldId = dexGetFieldId(pDvmDex->pDexFile, ref); local
1304 ref = pFieldId->classIdx;
1336 const DexFieldId* pFieldId = dexGetFieldId(pDvmDex->pDexFile, ref); local
1337 const char* className = dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->classIdx);
1338 const char* fieldName = dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx);
/dalvik/vm/reflect/
H A DAnnotation.cpp1904 const DexFieldId* pFieldId = dexGetFieldId(pDexFile, idx); local
1905 const char* str = dexStringByTypeIdx(pDexFile, pFieldId->classIdx);
1909 str = dexStringById(pDexFile, pFieldId->nameIdx);
1912 str = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
/dalvik/dexdump/
H A DDexDump.cpp680 const DexFieldId* pFieldId; local
685 pFieldId = dexGetFieldId(pDexFile, fieldIdx);
686 pFieldInfo->name = dexStringById(pDexFile, pFieldId->nameIdx);
687 pFieldInfo->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
689 dexStringByTypeIdx(pDexFile, pFieldId->classIdx);
1292 const DexFieldId* pFieldId; local
1304 pFieldId = dexGetFieldId(pDexFile, pSField->fieldIdx);
1305 name = dexStringById(pDexFile, pFieldId->nameIdx);
1306 typeDescriptor = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
1307 backDescriptor = dexStringByTypeIdx(pDexFile, pFieldId
[all...]

Completed in 1161 milliseconds