• Home
  • Raw
  • Download

Lines Matching refs:Method

33 struct Method;
52 const Method* method, struct Thread* self);
412 Method* directMethods;
416 Method* virtualMethods;
424 Method** vtable;
488 struct Method { struct
589 Method* dvmFindDirectMethodByDescriptor(const ClassObject* clazz, argument
591 Method* dvmFindVirtualMethodByDescriptor(const ClassObject* clazz,
593 Method* dvmFindVirtualMethodByName(const ClassObject* clazz,
595 Method* dvmFindDirectMethod(const ClassObject* clazz, const char* methodName,
597 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
604 Method* dvmFindDirectMethodHierByDescriptor(const ClassObject* clazz,
606 Method* dvmFindVirtualMethodHierByDescriptor(const ClassObject* clazz,
608 Method* dvmFindDirectMethodHier(const ClassObject* clazz,
610 Method* dvmFindVirtualMethodHier(const ClassObject* clazz,
612 Method* dvmFindMethodHier(const ClassObject* clazz, const char* methodName,
618 Method* dvmFindInterfaceMethodHierByDescriptor(const ClassObject* iface,
620 Method* dvmFindInterfaceMethodHier(const ClassObject* iface,
628 const Method* dvmGetVirtualizedMethod(const ClassObject* clazz,
629 const Method* meth);
634 extern "C" const char* dvmGetMethodSourceFile(const Method* meth);
673 INLINE bool dvmIsPublicMethod(const Method* method) { in dvmIsPublicMethod()
676 INLINE bool dvmIsPrivateMethod(const Method* method) { in dvmIsPrivateMethod()
679 INLINE bool dvmIsStaticMethod(const Method* method) { in dvmIsStaticMethod()
682 INLINE bool dvmIsSynchronizedMethod(const Method* method) { in dvmIsSynchronizedMethod()
685 INLINE bool dvmIsDeclaredSynchronizedMethod(const Method* method) { in dvmIsDeclaredSynchronizedMethod()
688 INLINE bool dvmIsFinalMethod(const Method* method) { in dvmIsFinalMethod()
691 INLINE bool dvmIsNativeMethod(const Method* method) { in dvmIsNativeMethod()
694 INLINE bool dvmIsAbstractMethod(const Method* method) { in dvmIsAbstractMethod()
697 INLINE bool dvmIsSyntheticMethod(const Method* method) { in dvmIsSyntheticMethod()
700 INLINE bool dvmIsMirandaMethod(const Method* method) { in dvmIsMirandaMethod()
703 INLINE bool dvmIsConstructorMethod(const Method* method) { in dvmIsConstructorMethod()
707 INLINE bool dvmIsDirectMethod(const Method* method) { in dvmIsDirectMethod()
714 INLINE bool dvmIsBytecodeMethod(const Method* method) { in dvmIsBytecodeMethod()
781 INLINE const DexCode* dvmGetMethodCode(const Method* meth) { in dvmGetMethodCode()
799 INLINE u4 dvmGetMethodInsnsSize(const Method* meth) { in dvmGetMethodInsnsSize()