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

  /dalvik/vm/oo/
Resolve.c 182 Method* resMethod;
215 resMethod = dvmFindDirectMethod(resClass, name, &proto);
217 resMethod = dvmFindDirectMethodHier(resClass, name, &proto);
219 resMethod = dvmFindVirtualMethodHier(resClass, name, &proto);
222 if (resMethod == NULL) {
228 methodIdx, resClass->descriptor, resMethod->name);
231 if (dvmIsAbstractMethod(resMethod) && !dvmIsAbstractClass(resClass)) {
241 if (!dvmIsClassInitialized(resMethod->clazz) &&
242 !dvmInitClass(resMethod->clazz))
255 assert(dvmIsClassInitialized(resMethod->clazz) |
    [all...]
  /dalvik/vm/analysis/
Optimize.c 722 Method* resMethod;
731 resMethod = dvmDexGetResolvedMethod(pDvmDex, methodIdx);
732 if (resMethod == NULL) {
766 resMethod = dvmFindDirectMethod(resClass,
770 resMethod = dvmFindMethodHier(resClass,
774 if (resMethod == NULL) {
782 if (!dvmIsStaticMethod(resMethod)) {
784 resClass->descriptor, resMethod->name);
790 if (dvmIsStaticMethod(resMethod)) {
792 resClass->descriptor, resMethod->name)
    [all...]
CodeVerify.c 1007 static bool isCorrectInvokeKind(MethodType methodType, Method* resMethod)
1011 return dvmIsDirectMethod(resMethod);
1013 return dvmIsStaticMethod(resMethod);
1016 return !dvmIsDirectMethod(resMethod);
    [all...]
RegisterMap.c     [all...]
  /dalvik/vm/reflect/
Annotation.c 295 Method* resMethod;
300 resMethod = dvmDexGetResolvedMethod(referrer->pDvmDex, methodIdx);
301 if (resMethod != NULL)
302 return resMethod;
329 resMethod = dvmFindDirectMethod(resClass, name, &proto);
337 resMethod = dvmFindMethodHier(resClass, name, &proto);
340 return resMethod;
    [all...]

Completed in 512 milliseconds