Searched defs:resMethod (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/oo/
H A DResolve.cpp182 Method* resMethod; local
214 resMethod = dvmFindDirectMethod(resClass, name, &proto);
216 resMethod = dvmFindDirectMethodHier(resClass, name, &proto);
218 resMethod = dvmFindVirtualMethodHier(resClass, name, &proto);
221 if (resMethod == NULL) {
231 methodIdx, resClass->descriptor, resMethod->name);
234 if (dvmIsAbstractMethod(resMethod) && !dvmIsAbstractClass(resClass)) {
244 if (!dvmIsClassInitialized(resMethod->clazz) &&
245 !dvmInitClass(resMethod->clazz))
258 assert(dvmIsClassInitialized(resMethod
292 Method* resMethod; local
[all...]
H A DObject.cpp552 Method* resMethod = dvmFindVirtualMethodByDescriptor(iface, local
554 if (resMethod == NULL) {
558 resMethod = dvmFindVirtualMethodByDescriptor(iface->iftable[i].clazz,
560 if (resMethod != NULL)
564 return resMethod;
575 Method* resMethod = dvmFindVirtualMethod(iface, methodName, proto); local
576 if (resMethod == NULL) {
580 resMethod = dvmFindVirtualMethod(iface->iftable[i].clazz,
582 if (resMethod != NULL)
586 return resMethod;
[all...]
/dalvik/vm/analysis/
H A DOptimize.cpp759 Method* resMethod; local
768 resMethod = dvmDexGetResolvedMethod(pDvmDex, methodIdx);
769 if (resMethod == NULL) {
803 resMethod = dvmFindDirectMethod(resClass,
807 resMethod = dvmFindMethodHier(resClass,
811 if (resMethod == NULL) {
819 if (!dvmIsStaticMethod(resMethod)) {
821 resClass->descriptor, resMethod->name);
827 if (dvmIsStaticMethod(resMethod)) {
829 resClass->descriptor, resMethod
986 Method* resMethod; local
[all...]
H A DCodeVerify.cpp1066 static bool isCorrectInvokeKind(MethodType methodType, Method* resMethod) argument
1070 return dvmIsDirectMethod(resMethod);
1072 return dvmIsStaticMethod(resMethod);
1075 return !dvmIsDirectMethod(resMethod);
1108 Method* resMethod; local
1119 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB);
1121 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType,
1124 if (resMethod == NULL) {
1158 if (resMethod->name[0] == '<') {
1159 if (methodType != METHOD_DIRECT || !isInitMethod(resMethod)) {
[all...]
/dalvik/vm/reflect/
H A DAnnotation.cpp234 Method* resMethod; local
239 resMethod = dvmDexGetResolvedMethod(referrer->pDvmDex, methodIdx);
240 if (resMethod != NULL)
241 return resMethod;
268 resMethod = dvmFindDirectMethod(resClass, name, &proto);
276 resMethod = dvmFindMethodHier(resClass, name, &proto);
279 return resMethod;

Completed in 122 milliseconds