Searched refs:pDexMethod (Results 1 – 4 of 4) sorted by relevance
/dalvik/dexlist/ |
D | DexList.cpp | 95 const DexMethod* pDexMethod, int i) in dumpMethod() argument 104 if (pDexMethod->codeOff == 0) in dumpMethod() 107 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod() 112 pCode = dexGetCode(pDexFile, pDexMethod); in dumpMethod() 129 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine); in dumpMethod() 133 u4 insnsOff = pDexMethod->codeOff + offsetof(DexCode, insns); in dumpMethod()
|
/dalvik/libdex/ |
D | DexClass.h | 110 const DexMethod* pDexMethod) in dexGetCode() argument 112 if (pDexMethod->codeOff == 0) in dexGetCode() 114 return (const DexCode*) (pDexFile->baseAddr + pDexMethod->codeOff); in dexGetCode()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 615 const DexMethod *pDexMethod) in dumpPositions() argument 619 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpPositions() 624 pDexMethod->accessFlags, dumpPositionsCb, NULL, NULL); in dumpPositions() 640 const DexMethod *pDexMethod) in dumpLocals() argument 645 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpLocals() 650 pDexMethod->accessFlags, NULL, dumpLocalsCb, NULL); in dumpLocals() 1044 void dumpBytecodes(DexFile* pDexFile, const DexMethod* pDexMethod) in dumpBytecodes() argument 1046 const DexCode* pCode = dexGetCode(pDexFile, pDexMethod); in dumpBytecodes() 1056 getMethodInfo(pDexFile, pDexMethod->methodIdx, &methInfo); in dumpBytecodes() 1112 void dumpCode(DexFile* pDexFile, const DexMethod* pDexMethod) in dumpCode() argument [all …]
|
/dalvik/vm/oo/ |
D | Class.cpp | 179 static void loadMethodFromDex(ClassObject* clazz, const DexMethod* pDexMethod,\ 2148 static void loadMethodFromDex(ClassObject* clazz, const DexMethod* pDexMethod, in loadMethodFromDex() argument 2155 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in loadMethodFromDex() 2160 meth->accessFlags = pDexMethod->accessFlags; in loadMethodFromDex() 2181 pDexCode = dexGetCode(pDexFile, pDexMethod); in loadMethodFromDex()
|