| /art/test/1955-pop-frame-jit-called/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | Test1953.java | 53     public void setup(Thread thr);  in setup()54     public void waitForSuspend(Thread thr);  in waitForSuspend()
 55     public void cleanup(Thread thr);  in cleanup()
 58   public static interface ThreadRunnable { public void run(Thread thr); }  in run()
 62       public void waitForSuspend(Thread thr) { SuspendEvents.waitForSuspendHit(thr); }  in makeSuspend()
 63       public void cleanup(Thread thr) { clean.run(thr); }  in makeSuspend()
 
 | 
| /art/test/jvmti-common/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | NonStandardExit.java | 20   public static native void popFrame(Thread thr);  in popFrame()21   public static native void forceEarlyReturnVoid(Thread thr);  in forceEarlyReturnVoid()
 22   public static native void forceEarlyReturnFloat(Thread thr, float f);  in forceEarlyReturnFloat()
 23   public static native void forceEarlyReturnDouble(Thread thr, double f);  in forceEarlyReturnDouble()
 24   public static native void forceEarlyReturnInt(Thread thr, int f);  in forceEarlyReturnInt()
 25   public static native void forceEarlyReturnLong(Thread thr, long f);  in forceEarlyReturnLong()
 26   public static native void forceEarlyReturnObject(Thread thr, Object f);  in forceEarlyReturnObject()
 28   public static void forceEarlyReturn(Thread thr, Object o) {  in forceEarlyReturn()
 
 | 
| /art/test/1969-force-early-return-void/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | NonStandardExit.java | 20   public static native void popFrame(Thread thr);  in popFrame()21   public static native void forceEarlyReturnVoid(Thread thr);  in forceEarlyReturnVoid()
 22   public static native void forceEarlyReturnFloat(Thread thr, float f);  in forceEarlyReturnFloat()
 23   public static native void forceEarlyReturnDouble(Thread thr, double f);  in forceEarlyReturnDouble()
 24   public static native void forceEarlyReturnInt(Thread thr, int f);  in forceEarlyReturnInt()
 25   public static native void forceEarlyReturnLong(Thread thr, long f);  in forceEarlyReturnLong()
 26   public static native void forceEarlyReturnObject(Thread thr, Object f);  in forceEarlyReturnObject()
 28   public static void forceEarlyReturn(Thread thr, Object o) {  in forceEarlyReturn()
 
 | 
| D | Test1969.java | 44     public void setupForceReturnRun(Thread thr);  in setupForceReturnRun()46     public void waitForSuspend(Thread thr);  in waitForSuspend()
 48     public void cleanup(Thread thr);  in cleanup()
 50     public default void performForceReturn(Thread thr) {  in performForceReturn()
 55     public default void setupNormalRun(Thread thr) {}  in setupNormalRun()
 59     public void run(Thread thr);  in run()
 68       public void waitForSuspend(Thread thr) {  in makeSuspend()
 72       public void cleanup(Thread thr) {  in makeSuspend()
 
 | 
| /art/test/1953-pop-frame/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | Test1953.java | 53     public void setup(Thread thr);  in setup()54     public void waitForSuspend(Thread thr);  in waitForSuspend()
 55     public void cleanup(Thread thr);  in cleanup()
 58   public static interface ThreadRunnable { public void run(Thread thr); }  in run()
 62       public void waitForSuspend(Thread thr) { SuspendEvents.waitForSuspendHit(thr); }  in makeSuspend()
 63       public void cleanup(Thread thr) { clean.run(thr); }  in makeSuspend()
 
 | 
| /art/test/1970-force-early-return-long/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | Test1970.java | 39   public static long getOveriddenReturnValue(Thread thr) {  in getOveriddenReturnValue()50     public void setupForceReturnRun(Thread thr);  in setupForceReturnRun()
 52     public void waitForSuspend(Thread thr);  in waitForSuspend()
 54     public void cleanup(Thread thr);  in cleanup()
 56     public default void performForceReturn(Thread thr) {  in performForceReturn()
 62     public default void setupNormalRun(Thread thr) {}  in setupNormalRun()
 66     public void run(Thread thr);  in run()
 75       public void waitForSuspend(Thread thr) {  in makeSuspend()
 79       public void cleanup(Thread thr) {  in makeSuspend()
 
 | 
| D | NonStandardExit.java | 20   public static native void popFrame(Thread thr);  in popFrame()21   public static native void forceEarlyReturnVoid(Thread thr);  in forceEarlyReturnVoid()
 22   public static native void forceEarlyReturnFloat(Thread thr, float f);  in forceEarlyReturnFloat()
 23   public static native void forceEarlyReturnDouble(Thread thr, double f);  in forceEarlyReturnDouble()
 24   public static native void forceEarlyReturnInt(Thread thr, int f);  in forceEarlyReturnInt()
 25   public static native void forceEarlyReturnLong(Thread thr, long f);  in forceEarlyReturnLong()
 26   public static native void forceEarlyReturnObject(Thread thr, Object f);  in forceEarlyReturnObject()
 28   public static void forceEarlyReturn(Thread thr, Object o) {  in forceEarlyReturn()
 
 | 
| /art/test/1954-pop-frame-jit/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | Test1953.java | 53     public void setup(Thread thr);  in setup()54     public void waitForSuspend(Thread thr);  in waitForSuspend()
 55     public void cleanup(Thread thr);  in cleanup()
 58   public static interface ThreadRunnable { public void run(Thread thr); }  in run()
 62       public void waitForSuspend(Thread thr) { SuspendEvents.waitForSuspendHit(thr); }  in makeSuspend()
 63       public void cleanup(Thread thr) { clean.run(thr); }  in makeSuspend()
 
 | 
| /art/test/1956-pop-frame-jit-calling/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | Test1953.java | 53     public void setup(Thread thr);  in setup()54     public void waitForSuspend(Thread thr);  in waitForSuspend()
 55     public void cleanup(Thread thr);  in cleanup()
 58   public static interface ThreadRunnable { public void run(Thread thr); }  in run()
 62       public void waitForSuspend(Thread thr) { SuspendEvents.waitForSuspendHit(thr); }  in makeSuspend()
 63       public void cleanup(Thread thr) { clean.run(thr); }  in makeSuspend()
 
 | 
| /art/test/1971-multi-force-early-return/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | NonStandardExit.java | 20   public static native void popFrame(Thread thr);  in popFrame()21   public static native void forceEarlyReturnVoid(Thread thr);  in forceEarlyReturnVoid()
 22   public static native void forceEarlyReturnFloat(Thread thr, float f);  in forceEarlyReturnFloat()
 23   public static native void forceEarlyReturnDouble(Thread thr, double f);  in forceEarlyReturnDouble()
 24   public static native void forceEarlyReturnInt(Thread thr, int f);  in forceEarlyReturnInt()
 25   public static native void forceEarlyReturnLong(Thread thr, long f);  in forceEarlyReturnLong()
 26   public static native void forceEarlyReturnObject(Thread thr, Object f);  in forceEarlyReturnObject()
 28   public static void forceEarlyReturn(Thread thr, Object o) {  in forceEarlyReturn()
 
 | 
| /art/test/1968-force-early-return/src/art/ | 
| D | SuspendEvents.java | 31   public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);  in setupSuspendBreakpointFor()32   public static native void clearSuspendBreakpointFor(Thread thr);  in clearSuspendBreakpointFor()
 34   public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);  in setupSuspendSingleStepAt()
 35   public static native void clearSuspendSingleStepFor(Thread thr);  in clearSuspendSingleStepFor()
 37   public static native void setupFieldSuspendFor(Class klass, Field f, boolean access, Thread thr);  in setupFieldSuspendFor()
 38   public static native void clearFieldSuspendFor(Thread thr);  in clearFieldSuspendFor()
 40   public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);  in setupSuspendMethodEvent()
 41   public static native void clearSuspendMethodEvent(Thread thr);  in clearSuspendMethodEvent()
 44       Executable meth, boolean is_catch, Thread thr);  in setupSuspendExceptionEvent()
 45   public static native void clearSuspendExceptionEvent(Thread thr);  in clearSuspendExceptionEvent()
 [all …]
 
 | 
| D | NonStandardExit.java | 20   public static native void popFrame(Thread thr);  in popFrame()21   public static native void forceEarlyReturnVoid(Thread thr);  in forceEarlyReturnVoid()
 22   public static native void forceEarlyReturnFloat(Thread thr, float f);  in forceEarlyReturnFloat()
 23   public static native void forceEarlyReturnDouble(Thread thr, double f);  in forceEarlyReturnDouble()
 24   public static native void forceEarlyReturnInt(Thread thr, int f);  in forceEarlyReturnInt()
 25   public static native void forceEarlyReturnLong(Thread thr, long f);  in forceEarlyReturnLong()
 26   public static native void forceEarlyReturnObject(Thread thr, Object f);  in forceEarlyReturnObject()
 28   public static void forceEarlyReturn(Thread thr, Object o) {  in forceEarlyReturn()
 
 | 
| D | Test1968.java | 43     public OveriddenReturnValue(Thread thr) {  in OveriddenReturnValue()66   public static Object getOveriddenReturnValue(Thread thr) {  in getOveriddenReturnValue()
 77     public void setupForceReturnRun(Thread thr);  in setupForceReturnRun()
 79     public void waitForSuspend(Thread thr);  in waitForSuspend()
 81     public void cleanup(Thread thr);  in cleanup()
 83     public default void performForceReturn(Thread thr) {  in performForceReturn()
 89     public default void setupNormalRun(Thread thr) {}  in setupNormalRun()
 93     public void run(Thread thr);  in run()
 102       public void waitForSuspend(Thread thr) {  in makeSuspend()
 106       public void cleanup(Thread thr) {  in makeSuspend()
 
 | 
| /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 …]
 
 |