Home
last modified time | relevance | path

Searched defs:thr (Results 1 – 25 of 256) sorted by relevance

1234567891011

/art/test/1956-pop-frame-jit-calling/src/art/
DSuspendEvents.java31 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 …]
DTest1953.java53 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/
DSuspendEvents.java31 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 …]
DNonStandardExit.java20 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/
DSuspendEvents.java31 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 …]
DNonStandardExit.java20 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()
DTest1968.java43 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/1954-pop-frame-jit/src/art/
DSuspendEvents.java31 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 …]
DTest1953.java53 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/
DSuspendEvents.java31 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 …]
DTest1970.java39 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()
DNonStandardExit.java20 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/jvmti-common/
DSuspendEvents.java31 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 …]
DNonStandardExit.java20 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()
DExceptions.java28 public static native void disableExceptionTracing(Thread thr); in disableExceptionTracing()
30 public static native void enableExceptionCatchEvent(Thread thr); in enableExceptionCatchEvent()
31 public static native void enableExceptionEvent(Thread thr); in enableExceptionEvent()
32 public static native void disableExceptionCatchEvent(Thread thr); in disableExceptionCatchEvent()
33 public static native void disableExceptionEvent(Thread thr); in disableExceptionEvent()
/art/test/1953-pop-frame/src/art/
DSuspendEvents.java31 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 …]
/art/test/1969-force-early-return-void/src/art/
DSuspendEvents.java31 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 …]
DNonStandardExit.java20 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()
DTest1969.java44 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/1955-pop-frame-jit-called/src/art/
DSuspendEvents.java31 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 …]
DTest1953.java53 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/1929-exception-catch-exception/src/art/
DExceptions.java28 public static native void disableExceptionTracing(Thread thr); in disableExceptionTracing()
30 public static native void enableExceptionCatchEvent(Thread thr); in enableExceptionCatchEvent()
31 public static native void enableExceptionEvent(Thread thr); in enableExceptionEvent()
32 public static native void disableExceptionCatchEvent(Thread thr); in disableExceptionCatchEvent()
33 public static native void disableExceptionEvent(Thread thr); in disableExceptionEvent()
/art/test/1928-exception-event-exception/src/art/
DExceptions.java28 public static native void disableExceptionTracing(Thread thr); in disableExceptionTracing()
30 public static native void enableExceptionCatchEvent(Thread thr); in enableExceptionCatchEvent()
31 public static native void enableExceptionEvent(Thread thr); in enableExceptionEvent()
32 public static native void disableExceptionCatchEvent(Thread thr); in disableExceptionCatchEvent()
33 public static native void disableExceptionEvent(Thread thr); in disableExceptionEvent()
/art/test/1927-exception-event/src/art/
DExceptions.java28 public static native void disableExceptionTracing(Thread thr); in disableExceptionTracing()
30 public static native void enableExceptionCatchEvent(Thread thr); in enableExceptionCatchEvent()
31 public static native void enableExceptionEvent(Thread thr); in enableExceptionEvent()
32 public static native void disableExceptionCatchEvent(Thread thr); in disableExceptionCatchEvent()
33 public static native void disableExceptionEvent(Thread thr); in disableExceptionEvent()
/art/test/2282-single-step-before-catch/src/art/
DExceptions.java28 public static native void disableExceptionTracing(Thread thr); in disableExceptionTracing()
30 public static native void enableExceptionCatchEvent(Thread thr); in enableExceptionCatchEvent()
31 public static native void enableExceptionEvent(Thread thr); in enableExceptionEvent()
32 public static native void disableExceptionCatchEvent(Thread thr); in disableExceptionCatchEvent()
33 public static native void disableExceptionEvent(Thread thr); in disableExceptionEvent()

1234567891011