HomeSort by relevance Sort by last modified time
    Searched refs:resMethod (Results 1 - 5 of 5) sorted by null

  /dalvik/vm/oo/
Resolve.cpp 182 Method* resMethod;
214 resMethod = dvmFindDirectMethod(resClass, name, &proto);
216 resMethod = dvmFindDirectMethodHier(resClass, name, &proto);
218 resMethod = dvmFindVirtualMethodHier(resClass, name, &proto);
221 if (resMethod == NULL) {
227 methodIdx, resClass->descriptor, resMethod->name);
230 if (dvmIsAbstractMethod(resMethod) && !dvmIsAbstractClass(resClass)) {
240 if (!dvmIsClassInitialized(resMethod->clazz) &&
241 !dvmInitClass(resMethod->clazz))
254 assert(dvmIsClassInitialized(resMethod->clazz) |
    [all...]
Object.cpp 552 Method* resMethod = dvmFindVirtualMethodByDescriptor(iface,
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);
576 if (resMethod == NULL) {
580 resMethod = dvmFindVirtualMethod(iface->iftable[i].clazz,
582 if (resMethod != NULL)
586 return resMethod;
    [all...]
  /dalvik/vm/analysis/
Optimize.cpp 876 Method* resMethod;
885 resMethod = dvmDexGetResolvedMethod(pDvmDex, methodIdx);
886 if (resMethod == NULL) {
920 resMethod = dvmFindDirectMethod(resClass,
924 resMethod = dvmFindMethodHier(resClass,
928 if (resMethod == NULL) {
936 if (!dvmIsStaticMethod(resMethod)) {
938 resClass->descriptor, resMethod->name);
944 if (dvmIsStaticMethod(resMethod)) {
946 resClass->descriptor, resMethod->name)
    [all...]
CodeVerify.cpp     [all...]
  /dalvik/vm/reflect/
Annotation.cpp 234 Method* resMethod;
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;
    [all...]

Completed in 254 milliseconds