Lines Matching defs:Method

33 struct Method;
52 const Method* method, struct Thread* self);
412 Method* directMethods;
416 Method* virtualMethods;
424 Method** vtable;
488 struct Method {
505 * Method bounds; not needed for an abstract method.
518 * Method prototype descriptor string (return and argument types).
589 Method* dvmFindDirectMethodByDescriptor(const ClassObject* clazz,
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) {
676 INLINE bool dvmIsPrivateMethod(const Method* method) {
679 INLINE bool dvmIsStaticMethod(const Method* method) {
682 INLINE bool dvmIsSynchronizedMethod(const Method* method) {
685 INLINE bool dvmIsDeclaredSynchronizedMethod(const Method* method) {
688 INLINE bool dvmIsFinalMethod(const Method* method) {
691 INLINE bool dvmIsNativeMethod(const Method* method) {
694 INLINE bool dvmIsAbstractMethod(const Method* method) {
697 INLINE bool dvmIsSyntheticMethod(const Method* method) {
700 INLINE bool dvmIsMirandaMethod(const Method* method) {
703 INLINE bool dvmIsConstructorMethod(const Method* method) {
707 INLINE bool dvmIsDirectMethod(const Method* method) {
714 INLINE bool dvmIsBytecodeMethod(const Method* method) {
781 INLINE const DexCode* dvmGetMethodCode(const Method* meth) {
799 INLINE u4 dvmGetMethodInsnsSize(const Method* meth) {