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

/dalvik/vm/interp/
H A DInterp.cpp1224 Method* absMethod; local
1232 absMethod = dvmDexGetResolvedMethod(methodClassDex, methodIdx);
1233 if (absMethod == NULL) {
1234 absMethod = dvmResolveInterfaceMethod(method->clazz, methodIdx);
1235 if (absMethod == NULL) {
1241 /* make sure absMethod->methodIndex means what we think it means */
1242 assert(dvmIsAbstractMethod(absMethod));
1246 * absMethod's class, then use absMethod->methodIndex to find
1255 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 13 milliseconds