/art/test/1927-exception-event/src/art/ |
D | Test1927.java | 74 public static class TestException extends Error { class in Test1927 75 public TestException(String s) { super(s); } in TestException() method in Test1927.TestException 76 public TestException() { super("from java"); } in TestException() method in Test1927.TestException 103 throw new TestException(); in terminal_J() 110 throw new TestException(); in test_J() 111 } catch (TestException e) { in test_J() 122 } catch (TestException e) { in test_J_J() 130 } catch (TestException e) { in test_J_N() 146 } catch (TestException e) { in test_J_J_J() 154 } catch (TestException e) { in test_J_J_N() [all …]
|
/art/test/1929-exception-catch-exception/src/art/ |
D | Test1929.java | 79 public static class TestException extends BaseTestException { class in Test1929 80 public TestException(String e) { super(e); } in TestException() method in Test1929.TestException 81 public TestException(String e, Throwable t) { super(e, t); } in TestException() method in Test1929.TestException 84 public static class TestExceptionNoRethrow extends TestException { 130 throw new TestException("doThrow"); in doThrow() 139 throw new TestException("throwCatchBaseTestException"); in throwCatchBaseTestException() 160 throw new TestException("throwCatchBaseTestExceptionTwice"); in throwCatchBaseTestExceptionTwiceImpl() 178 throw new TestException("throwCatchTestExceptionTwice"); in throwCatchTestExceptionTwiceImpl() 179 } catch (TestException t) { in throwCatchTestExceptionTwiceImpl() 185 } catch (TestException t) { in throwCatchTestExceptionTwiceImpl() [all …]
|
/art/test/1928-exception-event-exception/src/art/ |
D | Test1928.java | 75 public static class TestException extends BaseTestException { class in Test1928 76 public TestException(String e) { super(e); } in TestException() method in Test1928.TestException 77 public TestException(String e, Throwable t) { super(e, t); } in TestException() method in Test1928.TestException 80 public static class TestExceptionNoRethrow extends TestException { 110 throw new TestException("doThrow"); in doThrow() 119 throw new TestException("throwCatchBaseTestException"); in throwCatchBaseTestException() 134 throw new TestException("throwCatchTestException"); in throwCatchTestException() 135 } catch (TestException t) { in throwCatchTestException() 149 throw new TestException("throwCatchTestExceptionNoRethrow"); in throwCatchTestExceptionNoRethrow() 166 TestException.class, in run()
|
/art/test/1932-monitor-events-misc/src/art/ |
D | Test1932.java | 125 throw new Monitors.TestException("Exception unlocking monitor in MonitorEnter " + l, e); in testNativeLockStateThrowEnter() 128 throw new Monitors.TestException("throwing exception during monitorEnter of " + l); in testNativeLockStateThrowEnter() 153 throw new Monitors.TestException("Exception unlocking monitor in MonitorEnter " + l, e); in testNativeLockStateThrowEntered() 158 throw new Monitors.TestException("throwing exception during monitorEntered of " + l); in testNativeLockStateThrowEntered() 186 throw new Monitors.TestException("error while recursive locking!", e); in testRecursiveMontiorEnteredLock() 214 throw new Monitors.TestException("error while doing unlock in other thread!", e); in testWaitedMonitorEnter() 241 throw new Monitors.TestException("error while doing unlock in other thread!", e); in testWaitMonitorEnter() 267 throw new Monitors.TestException("error while doing unlock in other thread!", e); in testWaitExitInterleaving() 299 throw new Monitors.TestException("error while doing unlock in other thread!", e); in testWaitEnterInterleaving() 362 throw new Monitors.TestException("throwing exception during monitorWaited of " + l); in testThrowWaitedInterrupt() [all …]
|
D | Monitors.java | 113 public static class TestException extends Error { class in Monitors 114 public TestException() { super(); } in TestException() method in Monitors.TestException 115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException 116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException 152 throw new TestException("Exception thrown by other thread!", exe); in checkException() 167 throw new TestException("We don't have any runner holding " + lock); in suspendWorker() 228 throw new TestException("Got an error while performing action " + cur_action, e); in DoLock()
|
/art/test/111-unresolvable-exception/src/ |
D | Main.java | 33 } catch (TestException e) { // This handler will have an unresolvable class. in check() 40 private static native void throwsTestException() throws TestException; in throwsTestException()
|
D | TestException.java | 17 public class TestException extends Exception { class
|
/art/test/1927-exception-event/ |
D | expected.txt | 1 class art.Test1927$TestException 3 main: public static void art.Test1927.test_J() @ line = 110 throws class art.Test1927$TestException… 12 main: public static void art.Test1927.test_J() @ line = 111 caught class art.Test1927$TestException… 20 Caught exception: art.Test1927$TestException: from java 22 Caught exception: art.Test1927$TestException: from native 24 …atic void art.Test1927.terminal_J() @ line = 103 throws class art.Test1927$TestException: from java 34 …static void art.Test1927.test_J_J() @ line = 122 caught class art.Test1927$TestException: from java 42 Caught exception: art.Test1927$TestException: from java 44 …ive void art.Test1927.terminal_N() @ line = -1 throws class art.Test1927$TestException: from native 54 …atic void art.Test1927.test_J_N() @ line = 130 caught class art.Test1927$TestException: from native [all …]
|
/art/test/1932-monitor-events-misc/ |
D | expected.txt | 9 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 10 …Caused by: art.Monitors$TestException: throwing exception during monitorEnter of NamedLock[Lock te… 16 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 17 …Caused by: art.Monitors$TestException: throwing exception during monitorEntered of NamedLock[Lock … 24 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 25 …Caused by: art.Monitors$TestException: throwing exception during monitorEntered of NamedLock[Lock … 30 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 31 …Caused by: art.Monitors$TestException: throwing exception during MonitorWait of NamedLock[Lock tes… 36 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 37 …Caused by: art.Monitors$TestException: throwing exception during monitorWait of NamedLock[Lock tes… [all …]
|
/art/test/1929-exception-catch-exception/ |
D | expected.txt | 2 …1929.run() throws java.lang.Exception @ line = 283 caught class art.Test1929$TestException: doThrow 9 Test "art.Test1929$DoThrowClass": Caught error art.Test1929$TestException:"doThrow" with handler "a… 12 ….throwCatchBaseTestException() @ line = 140 caught class art.Test1929$TestException: throwCatchBas… 22 Caught art.Test1929$TestException: "throwCatchBaseTestException" 26 …chBaseTestExceptionTwiceImpl() @ line = 161 caught class art.Test1929$TestException: throwCatchBas… 36 Caught art.Test1929$TestException: "throwCatchBaseTestExceptionTwice" 40 …1929.throwCatchTestException() @ line = 207 caught class art.Test1929$TestException: throwCatchTes… 50 Caught art.Test1929$TestException: "throwCatchTestException" 54 …wCatchTestExceptionTwiceImpl() @ line = 179 caught class art.Test1929$TestException: throwCatchTes… 64 Caught art.Test1929$TestException: "throwCatchTestExceptionTwice" [all …]
|
/art/test/1933-monitor-current-contended/src/art/ |
D | Monitors.java | 113 public static class TestException extends Error { class in Monitors 114 public TestException() { super(); } in TestException() method in Monitors.TestException 115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException 116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException 152 throw new TestException("Exception thrown by other thread!", exe); in checkException() 167 throw new TestException("We don't have any runner holding " + lock); in suspendWorker() 228 throw new TestException("Got an error while performing action " + cur_action, e); in DoLock()
|
/art/test/1931-monitor-events/src/art/ |
D | Monitors.java | 113 public static class TestException extends Error { class in Monitors 114 public TestException() { super(); } in TestException() method in Monitors.TestException 115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException 116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException 152 throw new TestException("Exception thrown by other thread!", exe); in checkException() 167 throw new TestException("We don't have any runner holding " + lock); in suspendWorker() 228 throw new TestException("Got an error while performing action " + cur_action, e); in DoLock()
|
D | Test1931.java | 102 } catch (Monitors.TestException e) { in testInteruptWait() 118 } catch (Monitors.TestException e) { in testIllegalWait()
|
/art/test/1930-monitor-info/src/art/ |
D | Monitors.java | 113 public static class TestException extends Error { class in Monitors 114 public TestException() { super(); } in TestException() method in Monitors.TestException 115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException 116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException 152 throw new TestException("Exception thrown by other thread!", exe); in checkException() 167 throw new TestException("We don't have any runner holding " + lock); in suspendWorker() 228 throw new TestException("Got an error while performing action " + cur_action, e); in DoLock()
|
/art/test/1934-jvmti-signal-thread/src/art/ |
D | Monitors.java | 113 public static class TestException extends Error { class in Monitors 114 public TestException() { super(); } in TestException() method in Monitors.TestException 115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException 116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException 152 throw new TestException("Exception thrown by other thread!", exe); in checkException() 167 throw new TestException("We don't have any runner holding " + lock); in suspendWorker() 228 throw new TestException("Got an error while performing action " + cur_action, e); in DoLock()
|
/art/test/1928-exception-event-exception/ |
D | expected.txt | 2 …ic static void art.Test1928.doThrow() @ line = 110 throws class art.Test1928$TestException: doThrow 13 Test "art.Test1928$DoThrowClass": Caught error art.Test1928$TestException:"doThrow" with handler "a… 16 ….throwCatchBaseTestException() @ line = 119 throws class art.Test1928$TestException: throwCatchBas… 27 Caught art.Test1928$TestException: "throwCatchBaseTestException" 31 …1928.throwCatchTestException() @ line = 134 throws class art.Test1928$TestException: throwCatchTes… 42 Caught art.Test1928$TestException: "throwCatchTestException" 46 …wCatchTestExceptionNoRethrow() @ line = 149 throws class art.Test1928$TestException: throwCatchTes… 57 Test "art.Test1928$DoThrowCatchTestExceptionNoRethrow": Caught error art.Test1928$TestException:"th… 60 …ic static void art.Test1928.doThrow() @ line = 110 throws class art.Test1928$TestException: doThrow 72 Test "art.Test1928$DoThrowClass": Caught error art.Test1928$TestException:"doThrow" with handler "a… [all …]
|
/art/test/1931-monitor-events/ |
D | expected.txt | 21 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 22 Caused by: art.Monitors$TestException: Got an error while performing action TIMED_WAIT 27 Caught exception: art.Monitors$TestException: Exception thrown by other thread! 28 Caused by: art.Monitors$TestException: Got an error while performing action WAIT
|
/art/test/1929-exception-catch-exception/smali/art/ |
D | Test1929$Impl.smali | 53 new-instance v1, Lart/Test1929$TestException; 57 invoke-direct {v1, v2}, Lart/Test1929$TestException;-><init>(Ljava/lang/String;)V 212 new-instance v1, Lart/Test1929$TestException; 216 invoke-direct {v1, v2}, Lart/Test1929$TestException;-><init>(Ljava/lang/String;)V 220 .catch Lart/Test1929$TestException; {:try_start_0 .. :try_end_8} :catch_8 229 .local v0, "t":Lart/Test1929$TestException; 260 invoke-virtual {v0}, Lart/Test1929$TestException;->getMessage()Ljava/lang/String; 288 invoke-virtual {v0, v1}, Lart/Test1929$TestException;->printStackTrace(Ljava/io/PrintStream;)V 290 .catch Lart/Test1929$TestException; {:try_start_9 .. :try_end_46} :catch_47 332 invoke-virtual {v0}, Lart/Test1929$TestException;->getMessage()Ljava/lang/String; [all …]
|
/art/test/111-unresolvable-exception/ |
D | build | 22 rm classes/TestException.class
|