Lines Matching full:args
436 static void Dalvik_java_lang_reflect_Field_getFieldModifiers(const u4* args,
439 /* ignore thisPtr in args[0] */
440 ClassObject* declaringClass = (ClassObject*) args[1];
441 int slot = args[2];
454 static void Dalvik_java_lang_reflect_Field_getField(const u4* args,
457 /* ignore thisPtr in args[0] */
458 Object* obj = (Object*) args[1];
459 ClassObject* declaringClass = (ClassObject*) args[2];
460 ClassObject* fieldType = (ClassObject*) args[3];
461 int slot = args[4];
462 bool noAccessCheck = (args[5] != 0);
489 static void Dalvik_java_lang_reflect_Field_setField(const u4* args,
492 /* ignore thisPtr in args[0] */
493 Object* obj = (Object*) args[1];
494 ClassObject* declaringClass = (ClassObject*) args[2];
495 ClassObject* fieldType = (ClassObject*) args
496 int slot = args[4];
497 bool noAccessCheck = (args[5] != 0);
498 Object* valueObj = (Object*) args[6];
522 static void Dalvik_java_lang_reflect_Field_getPrimitiveField(const u4* args,
525 /* ignore thisPtr in args[0] */
526 Object* obj = (Object*) args[1];
527 ClassObject* declaringClass = (ClassObject*) args[2];
528 ClassObject* fieldType = (ClassObject*) args[3];
529 int slot = args[4];
530 bool noAccessCheck = (args[5] != 0);
531 jchar descriptor = args[6];
562 static void Dalvik_java_lang_reflect_Field_setPrimitiveField(const u4* args,
565 /* ignore thisPtr in args[0] */
566 Object* obj = (Object*) args[1];
567 ClassObject* declaringClass = (ClassObject*) args[2];
568 ClassObject* fieldType = (ClassObject*) args[3];
569 int slot = args[4];
570 bool noAccessCheck = (args[5] != 0);
571 jchar descriptor = args[6];
572 const s4* valuePtr = (s4*) &args[7]; /* 64-bit vars spill into args[8] */
606 const u4* args, JValue* pResult)
608 ClassObject* declaringClass = (ClassObject*) args[0];
609 int slot = args[1];
624 static void Dalvik_java_lang_reflect_Field_getAnnotation(const u4* args,
627 ClassObject* clazz = (ClassObject*) args[0];
628 int slot = args[1];
629 ClassObject* annotationClazz = (ClassObject*) args[2];
639 static void Dalvik_java_lang_reflect_Field_isAnnotationPresent(const u4* args,
642 ClassObject* clazz = (ClassObject*) args[0];
643 int slot = args[1];
644 ClassObject* annotationClazz = (ClassObject*) args[2];
655 static void Dalvik_java_lang_reflect_Field_getSignatureAnnotation(const u4* args,
658 /* ignore thisPtr in args[0] */
659 ClassObject* declaringClass = (ClassObject*) args[1];
660 int slot = args[2];