Home | History | Annotate | Download | only in native

Lines Matching full:args

30 static void Dalvik_java_lang_reflect_Method_getMethodModifiers(const u4* args,
33 ClassObject* declaringClass = (ClassObject*) args[0];
34 int slot = args[1];
42 * private Object invokeNative(Object obj, Object[] args, Class declaringClass,
47 static void Dalvik_java_lang_reflect_Method_invokeNative(const u4* args,
50 // ignore thisPtr in args[0]
51 Object* methObj = (Object*) args[1]; // null for static methods
52 ArrayObject* argList = (ArrayObject*) args[2];
53 ClassObject* declaringClass = (ClassObject*) args[3];
54 ArrayObject* params = (ArrayObject*) args[4];
55 ClassObject* returnType = (ClassObject*) args[5];
56 int slot = args[6];
57 bool noAccessCheck = (args[7] != 0);
121 const u4* args, JValue* pResult)
123 ClassObject* declaringClass = (ClassObject*) args[0];
124 int slot = args[1];
139 static void Dalvik_java_lang_reflect_Method_getAnnotation(const u4* args,
142 ClassObject* clazz = (ClassObject*) args[0];
143 int slot = args[1];
144 ClassObject* annotationClazz = (ClassObject*) args[2];
154 static void Dalvik_java_lang_reflect_Method_isAnnotationPresent(const u4* args,
157 ClassObject* clazz = (ClassObject*) args[0];
158 int slot = args[1];
159 ClassObject* annotationClazz = (ClassObject*) args[2];
171 const u4* args, JValue* pResult)
173 ClassObject* declaringClass = (ClassObject*) args[0];
174 int slot = args[1];
191 static void Dalvik_java_lang_reflect_Method_getDefaultValue(const u4* args,
194 // ignore thisPtr in args[0]
195 ClassObject* declaringClass = (ClassObject*) args[1];
196 int slot = args[2];
217 const u4* args, JValue* pResult)
219 ClassObject* declaringClass = (ClassObject*) args[0];
220 int slot = args[1];