Searched defs:absMethod (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/interp/
H A DInterp.cpp1222 Method* absMethod; local
1230 absMethod = dvmDexGetResolvedMethod(methodClassDex, methodIdx);
1231 if (absMethod == NULL) {
1232 absMethod = dvmResolveInterfaceMethod(method->clazz, methodIdx);
1233 if (absMethod == NULL) {
1239 /* make sure absMethod->methodIndex means what we think it means */
1240 assert(dvmIsAbstractMethod(absMethod));
1244 * absMethod's class, then use absMethod->methodIndex to find
1253 if (thisClass->iftable[i].clazz == absMethod
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.cpp5437 Method* absMethod; local
5441 absMethod = verifyInvocationArgs(meth, workLine, insnRegCount,
5471 * defined absMethod, or absMethod's class needs to be one
5475 if (thisClass != absMethod->clazz &&
5477 !dvmImplements(thisClass, absMethod->clazz))
5479 LOG_VFY("VFY: unable to match absMethod '%s' with %s interfaces",
5480 absMethod->name, thisClass->descriptor);
5492 returnType = getMethodReturnType(absMethod);

Completed in 68 milliseconds