Searched refs:DexMethod (Results 1 - 6 of 6) sorted by relevance
/dalvik/libdex/ |
H A D | DexClass.h | 42 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 D | DexClass.cpp | 85 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 D | DexSwapVerify.cpp | 1465 DexMethod* methods, bool expectDirect) { 1469 DexMethod* method = &methods[i]; 1622 const DexMethod* meth = &classData->directMethods[i]; 1630 const DexMethod* meth = &classData->virtualMethods[i];
|
/dalvik/dexdump/ |
H A D | DexDump.cpp | 615 const DexMethod *pDexMethod) 640 const DexMethod *pDexMethod) 1044 void dumpBytecodes(DexFile* pDexFile, const DexMethod* pDexMethod) 1112 void dumpCode(DexFile* pDexFile, const DexMethod* pDexMethod) 1133 void dumpMethod(DexFile* pDexFile, const DexMethod* pDexMethod, int i) 1569 void dumpMethodMap(DexFile* pDexFile, const DexMethod* pDexMethod, int idx,
|
/dalvik/dexlist/ |
H A D | DexList.cpp | 95 const DexMethod* pDexMethod, int i)
|
/dalvik/vm/oo/ |
H A D | Class.cpp | 179 static void loadMethodFromDex(ClassObject* clazz, const DexMethod* pDexMethod,\ 1890 DexMethod method; 1914 DexMethod method; 2143 * Pull the interesting pieces out of a DexMethod. 2148 static void loadMethodFromDex(ClassObject* clazz, const DexMethod* pDexMethod,
|
Completed in 18 milliseconds