Searched refs:DexMethod (Results 1 - 4 of 4) sorted by relevance

/dalvik/libdex/
H A DDexClass.h42 struct DexMethod { struct
55 DexMethod* directMethods;
56 DexMethod* virtualMethods;
91 DexMethod* pMethod, u4* lastIndex);
106 * Get the DexCode for a DexMethod. Returns NULL if the class is native
110 const DexMethod* pDexMethod)
152 DEX_INLINE void dexReadClassDataMethod(const u1** pData, DexMethod* pMethod,
H A DDexClass.cpp85 DexMethod* pMethod, u4* lastIndex) {
121 (header.directMethodsSize * sizeof(DexMethod)) +
122 (header.virtualMethodsSize * sizeof(DexMethod));
150 result->directMethods = (DexMethod*) ptr;
151 ptr += header.directMethodsSize * sizeof(DexMethod);
157 result->virtualMethods = (DexMethod*) ptr;
H A DDexSwapVerify.cpp1535 DexMethod* methods, bool expectDirect) {
1539 DexMethod* method = &methods[i];
1697 const DexMethod* meth = &classData->directMethods[i];
1705 const DexMethod* meth = &classData->virtualMethods[i];
/dalvik/dexdump/
H A DDexDump.cpp626 const DexMethod *pDexMethod)
651 const DexMethod *pDexMethod)
1170 void dumpBytecodes(DexFile* pDexFile, const DexMethod* pDexMethod)
1243 void dumpCode(DexFile* pDexFile, const DexMethod* pDexMethod)
1264 void dumpMethod(DexFile* pDexFile, const DexMethod* pDexMethod, int i)
1700 void dumpMethodMap(DexFile* pDexFile, const DexMethod* pDexMethod, int idx,

Completed in 75 milliseconds