| /art/test/1935-get-set-current-frame-jit/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1911-get-local-var-table/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1966-get-set-local-objects-no-table/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1924-frame-pop-toggle/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | StackTrace.java | 27     public final int depth;  field in StackTrace.StackFrameData29     public StackFrameData(Thread thr, Executable e, long loc, int depth) {  in StackFrameData()
 
 | 
| /art/test/1965-get-set-local-primitive-no-tables/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | Test1965.java | 47     public void invoke(Thread thread, Method target, int slot, int depth) throws Exception;  in invoke()51     public void SetVar(Thread t, int depth, int slot, Object v);  in SetVar()
 54   public static interface GetterFunction { public Object GetVar(Thread t, int depth, int slot); }  in GetVar()
 
 | 
| /art/test/1926-missed-frame-pop/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1915-get-set-local-current-thread/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | Test1915.java | 57             int depth = FindExpectedFrameDepth(frame);  in run()  local66             int depth = FindExpectedFrameDepth(frame);  in run()  local
 68             Locals.SetLocalVariableInt(Thread.currentThread(), depth, slot, SET_VALUE);  in run()  local
 
 | 
| /art/test/1916-get-set-current-frame/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | StackTrace.java | 27     public final int depth;  field in StackTrace.StackFrameData29     public StackFrameData(Thread thr, Executable e, long loc, int depth) {  in StackFrameData()
 
 | 
| /art/test/1923-frame-pop/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1912-get-set-local-primitive/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1914-get-local-instance/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | StackTrace.java | 27     public final int depth;  field in StackTrace.StackFrameData29     public StackFrameData(Thread thr, Executable e, long loc, int depth) {  in StackFrameData()
 
 | 
| /art/test/jvmti-common/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1967-get-set-local-bad-slot/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | Test1967.java | 58         Thread thread, Method target, Locals.VariableDescription TARGET_desc, int depth)  in invoke()63     public void SetVar(Thread t, int depth, int slot, Object v);  in SetVar()
 67     public Object GetVar(Thread t, int depth, int slot);  in GetVar()
 
 | 
| /art/test/1939-proxy-frames/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| D | Test1939.java | 40         int depth) throws Exception;  in invoke()44     public Object GetVar(Thread t, int depth);  in GetVar()
 
 | 
| /art/test/1925-self-frame-pop/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/1913-get-set-local-objects/src/art/ | 
| D | Locals.java | 97   public static native int GetLocalVariableInt(Thread thr, int depth, int slot);  in GetLocalVariableInt()98   public static native long GetLocalVariableLong(Thread thr, int depth, int slot);  in GetLocalVariableLong()
 99   public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);  in GetLocalVariableFloat()
 100   public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);  in GetLocalVariableDouble()
 101   public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);  in GetLocalVariableObject()
 102   public static native Object GetLocalInstance(Thread thr, int depth);  in GetLocalInstance()
 104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()
 107   public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableLong()
 110   public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableFloat()
 113   public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableDouble()
 [all …]
 
 | 
| /art/test/ti-agent/ | 
| D | locals_helper.cc | 49                                                                  jint depth,  in Java_art_Locals_SetLocalVariableObject()58                                                                  jint depth,  in Java_art_Locals_SetLocalVariableDouble()
 67                                                                 jint depth,  in Java_art_Locals_SetLocalVariableFloat()
 76                                                                jint depth,  in Java_art_Locals_SetLocalVariableLong()
 85                                                               jint depth,  in Java_art_Locals_SetLocalVariableInt()
 94                                                                     jint depth,  in Java_art_Locals_GetLocalVariableDouble()
 104                                                                   jint depth,  in Java_art_Locals_GetLocalVariableFloat()
 114                                                                 jint depth,  in Java_art_Locals_GetLocalVariableLong()
 124                                                               jint depth,  in Java_art_Locals_GetLocalVariableInt()
 134                                                               jint depth) {  in Java_art_Locals_GetLocalInstance()
 [all …]
 
 | 
| /art/test/1939-proxy-frames/ | 
| D | local_instance.cc | 39                                                               jint depth) {  in Java_art_Test1939_GetFrameMethod()57                                                               jint depth) {  in Java_art_Test1939_GetFrameLocation()
 
 |