Lines Matching refs:method
63 Method* dvmSlotToMethod(ClassObject* clazz, int slot);
93 * Return the class object that matches the method's signature. For
96 ClassObject* dvmGetBoxedReturnType(const Method* meth);
102 Method* dvmGetMethodFromReflectObj(Object* obj);
104 Object* dvmCreateReflectObjForMethod(const ClassObject* clazz, Method* method);
107 * Quick test to determine if the method in question is a reflection call.
108 * Used for some stack parsing. Currently defined as "the method's declaring
109 * class is java.lang.reflect.Method".
111 INLINE bool dvmIsReflectionMethod(const Method* method)
113 return (method->clazz == gDvm.classJavaLangReflectMethod);
123 * Create a new java.lang.reflect.Method object based on "meth".
125 Object* dvmCreateReflectMethodObject(const Method* meth);
128 * Return an array of Annotation objects for the specified piece. For method
131 * Method also applies to Constructor.
134 ArrayObject* dvmGetMethodAnnotations(const Method* method);
136 ArrayObject* dvmGetParameterAnnotations(const Method* method);
141 Object* dvmGetAnnotationDefaultValue(const Method* method);
144 * Get the list of thrown exceptions for a method. Returns NULL if there
147 ArrayObject* dvmGetMethodThrows(const Method* method);
153 ArrayObject* dvmGetMethodSignatureAnnotation(const Method* method);
157 * Get the EnclosingMethod attribute from an annotation. Returns a Method