Searched defs:pFieldId (Results 1 - 7 of 7) sorted by relevance
/dalvik/vm/oo/ |
H A D | Resolve.c | 402 const DexFieldId* pFieldId; local 408 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx); 413 resClass = dvmResolveClass(referrer, pFieldId->classIdx, false); 420 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), 421 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx)); 424 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); 464 const DexFieldId* pFieldId; local 467 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx); 472 resClass = dvmResolveClass(referrer, pFieldId->classIdx, false); 479 dexStringById(pDvmDex->pDexFile, pFieldId [all...] |
H A D | Class.c | 2245 const DexFieldId* pFieldId; local 2247 pFieldId = dexGetFieldId(pDexFile, pDexSField->fieldIdx); 2250 sfield->field.name = dexStringById(pDexFile, pFieldId->nameIdx); 2251 sfield->field.signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx); 2273 const DexFieldId* pFieldId; local 2275 pFieldId = dexGetFieldId(pDexFile, pDexIField->fieldIdx); 2278 ifield->field.name = dexStringById(pDexFile, pFieldId->nameIdx); 2279 ifield->field.signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
|
/dalvik/vm/analysis/ |
H A D | Optimize.c | 485 const DexFieldId* pFieldId; local 488 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ifieldIdx); 493 resClass = dvmOptResolveClass(referrer, pFieldId->classIdx, pFailure); 502 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx), 503 dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->typeIdx)); 507 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); 515 dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx)); 558 const DexFieldId* pFieldId; local 561 pFieldId = dexGetFieldId(pDvmDex->pDexFile, sfieldIdx); 566 resClass = dvmOptResolveClass(referrer, pFieldId [all...] |
H A D | CodeVerify.c | 2584 const DexFieldId* pFieldId; local 2586 pFieldId = dexGetFieldId(pDexFile, fieldIdx); 2589 dexStringById(pDexFile, pFieldId->nameIdx), 2590 dexStringByTypeIdx(pDexFile, pFieldId->classIdx));
|
/dalvik/vm/interp/ |
H A D | Interp.c | 1046 const DexFieldId* pFieldId = dexGetFieldId(pDvmDex->pDexFile, ref); local 1047 ref = pFieldId->classIdx; 1079 const DexFieldId* pFieldId; local 1088 pFieldId = dexGetFieldId(pDvmDex->pDexFile, ref); 1089 className = dexStringByTypeIdx(pDvmDex->pDexFile, pFieldId->classIdx); 1090 fieldName = dexStringById(pDvmDex->pDexFile, pFieldId->nameIdx);
|
/dalvik/vm/reflect/ |
H A D | Annotation.c | 1828 const DexFieldId* pFieldId = dexGetFieldId(pDexFile, idx); local 1829 const char* str = dexStringByTypeIdx(pDexFile, pFieldId->classIdx); 1833 str = dexStringById(pDexFile, pFieldId->nameIdx); 1836 str = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
|
/dalvik/dexdump/ |
H A D | DexDump.c | 675 const DexFieldId* pFieldId; local 680 pFieldId = dexGetFieldId(pDexFile, fieldIdx); 681 pFieldInfo->name = dexStringById(pDexFile, pFieldId->nameIdx); 682 pFieldInfo->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx); 684 dexStringByTypeIdx(pDexFile, pFieldId->classIdx); 1259 const DexFieldId* pFieldId; local 1271 pFieldId = dexGetFieldId(pDexFile, pSField->fieldIdx); 1272 name = dexStringById(pDexFile, pFieldId->nameIdx); 1273 typeDescriptor = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx); 1274 backDescriptor = dexStringByTypeIdx(pDexFile, pFieldId [all...] |
Completed in 94 milliseconds