Searched defs:methodType (Results 1 - 3 of 3) sorted by relevance
/dalvik/vm/oo/ |
H A D | Resolve.c | 177 MethodType methodType) 184 assert(methodType != METHOD_INTERFACE); 214 if (methodType == METHOD_DIRECT) { 216 } else if (methodType == METHOD_STATIC) { 240 if (methodType == METHOD_STATIC) { 266 if (methodType == METHOD_STATIC && !dvmIsClassInitialized(resMethod->clazz)) 575 * For debugging: return a string representing the methodType. 577 const char* dvmMethodTypeStr(MethodType methodType) argument 579 switch (methodType) { 176 dvmResolveMethod(const ClassObject* referrer, u4 methodIdx, MethodType methodType) argument
|
/dalvik/vm/analysis/ |
H A D | Optimize.c | 46 MethodType methodType); 48 MethodType methodType); 719 MethodType methodType, VerifyError* pFailure) 724 assert(methodType == METHOD_DIRECT || 725 methodType == METHOD_VIRTUAL || 726 methodType == METHOD_STATIC); 765 if (methodType == METHOD_DIRECT) { 781 if (methodType == METHOD_STATIC) { 789 } else if (methodType == METHOD_VIRTUAL) { 817 if (methodType ! 718 dvmOptResolveMethod(ClassObject* referrer, u4 methodIdx, MethodType methodType, VerifyError* pFailure) argument 1023 rewriteExecuteInline(Method* method, u2* insns, MethodType methodType) argument 1075 rewriteExecuteInlineRange(Method* method, u2* insns, MethodType methodType) argument [all...] |
H A D | CodeVerify.c | 1007 static bool isCorrectInvokeKind(MethodType methodType, Method* resMethod) argument 1009 switch (methodType) { 1046 UninitInstanceMap* uninitMap, MethodType methodType, bool isRange, 1056 if (methodType == METHOD_INTERFACE) { 1059 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType, 1091 dvmMethodTypeStr(methodType), pDecInsn->vB, 1105 if (methodType != METHOD_DIRECT || !isInitMethod(resMethod)) { 1116 if (!isCorrectInvokeKind(methodType, resMethod)) { 1127 assert(methodType == METHOD_VIRTUAL); 1186 if (methodType ! 1044 verifyInvocationArgs(const Method* meth, const RegType* insnRegs, const int insnRegCount, const DecodedInstruction* pDecInsn, UninitInstanceMap* uninitMap, MethodType methodType, bool isRange, bool isSuper, VerifyError* pFailure) argument [all...] |
Completed in 43 milliseconds