Home
last modified time | relevance | path

Searched refs:out_err (Results 1 – 1 of 1) sorted by relevance

/art/test/1934-jvmti-signal-thread/src/art/
DTest1934.java79 final Throwable[] out_err = new Throwable[] { null, }; in testStopBeforeStart() local
82 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testStopBeforeStart()
88 System.out.println("Other thread Stopped by: " + out_err[0]); in testStopBeforeStart()
89 if (PRINT_STACK_TRACE && out_err[0] != null) { in testStopBeforeStart()
90 out_err[0].printStackTrace(); in testStopBeforeStart()
98 final Throwable[] out_err = new Throwable[] { null, }; in testInterruptBeforeStart() local
101 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testInterruptBeforeStart()
107 System.out.println("Other thread interrupted. err: " + out_err[0]); in testInterruptBeforeStart()
108 if (PRINT_STACK_TRACE && out_err[0] != null) { in testInterruptBeforeStart()
109 out_err[0].printStackTrace(); in testInterruptBeforeStart()
[all …]