Lines Matching refs:pDexMethod
619 const DexMethod *pDexMethod) in dumpPositions() argument
623 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpPositions()
628 pDexMethod->accessFlags, dumpPositionsCb, NULL, NULL); in dumpPositions()
644 const DexMethod *pDexMethod) in dumpLocals() argument
649 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpLocals()
654 pDexMethod->accessFlags, NULL, dumpLocalsCb, NULL); in dumpLocals()
1182 void dumpBytecodes(DexFile* pDexFile, const DexMethod* pDexMethod) in dumpBytecodes() argument
1184 const DexCode* pCode = dexGetCode(pDexFile, pDexMethod); in dumpBytecodes()
1198 getMethodInfo(pDexFile, pDexMethod->methodIdx, &methInfo); in dumpBytecodes()
1255 void dumpCode(DexFile* pDexFile, const DexMethod* pDexMethod) in dumpCode() argument
1257 const DexCode* pCode = dexGetCode(pDexFile, pDexMethod); in dumpCode()
1265 dumpBytecodes(pDexFile, pDexMethod); in dumpCode()
1269 dumpPositions(pDexFile, pCode, pDexMethod); in dumpCode()
1270 dumpLocals(pDexFile, pCode, pDexMethod); in dumpCode()
1276 void dumpMethod(DexFile* pDexFile, const DexMethod* pDexMethod, int i) in dumpMethod() argument
1285 (pDexMethod->accessFlags & (ACC_PUBLIC | ACC_PROTECTED)) == 0) in dumpMethod()
1290 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod()
1296 accessStr = createAccessFlagStr(pDexMethod->accessFlags, in dumpMethod()
1304 pDexMethod->accessFlags, accessStr); in dumpMethod()
1306 if (pDexMethod->codeOff == 0) { in dumpMethod()
1310 dumpCode(pDexFile, pDexMethod); in dumpMethod()
1343 quotedBool((pDexMethod->accessFlags & ACC_ABSTRACT) != 0)); in dumpMethod()
1345 quotedBool((pDexMethod->accessFlags & ACC_NATIVE) != 0)); in dumpMethod()
1348 (pDexMethod->accessFlags & ACC_SYNCHRONIZED) != 0 || in dumpMethod()
1349 (pDexMethod->accessFlags & ACC_DECLARED_SYNCHRONIZED) != 0; in dumpMethod()
1354 quotedBool((pDexMethod->accessFlags & ACC_STATIC) != 0)); in dumpMethod()
1356 quotedBool((pDexMethod->accessFlags & ACC_FINAL) != 0)); in dumpMethod()
1359 quotedVisibility(pDexMethod->accessFlags)); in dumpMethod()
1703 void dumpMethodMap(DexFile* pDexFile, const DexMethod* pDexMethod, int idx, in dumpMethodMap() argument
1711 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethodMap()