Searched defs:uncaughtException (Results 1 - 8 of 8) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
H A DThreadTest.java26 public void uncaughtException(Thread t, Throwable e) { method in class:ThreadTest.MyHandler
H A DForkJoinPoolTest.java66 public void uncaughtException(Thread t, Throwable e) { method in class:ForkJoinPoolTest.MyHandler
281 public void uncaughtException(Thread t, Throwable e) {
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldThreadGroupTest.java318 * @see java.lang.Thread.UncaughtExceptionHandler#uncaughtException(java.lang.Thread, java.lang.Throwable)
320 public void uncaughtException(Thread t, Throwable e) { method in class:OldThreadGroupTest
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DThreadGroupTest.java491 * Test for method void java.lang.ThreadGroup.uncaughtException(java.lang.Thread,
501 public void uncaughtException(Thread t, Throwable e) {
506 super.uncaughtException(t, e);
528 * Test for method void java.lang.ThreadGroup.uncaughtException(java.lang.Thread,
537 public void uncaughtException(Thread t, Throwable e) {
541 super.uncaughtException(t, e);
550 assertFalse("A thread should not call uncaughtException when it dies:"
555 * Test for method void java.lang.ThreadGroup.uncaughtException(java.lang.Thread,
569 public void uncaughtException(Thread t, Throwable e) {
574 super.uncaughtException(
778 public void uncaughtException(Thread thread, Throwable ex) { method in class:ThreadGroupTest.TestThreadDefaultUncaughtExceptionHandler
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DTimerTest.java973 @Override public void uncaughtException(Thread thread, Throwable ex) {}
1137 public void uncaughtException(Thread thread, Throwable ex) { method in class:TimerTest.SwallowUncaughtExceptionHandler
/libcore/ojluni/src/main/java/java/lang/
H A DThreadGroup.java1032 * The <code>uncaughtException</code> method of
1036 * <code>uncaughtException</code> method of that parent is called
1041 * <code>uncaughtException</code> method is called with the same
1061 public void uncaughtException(Thread t, Throwable e) { method in class:ThreadGroup
1063 parent.uncaughtException(t, e);
1068 ueh.uncaughtException(t, e);
H A DThread.java828 * @see ThreadGroup#uncaughtException(Thread,Throwable)
1826 * <tt>uncaughtException</tt> method, passing the thread and the
1838 * @see ThreadGroup#uncaughtException
1850 void uncaughtException(Thread t, Throwable e); method in interface:Thread.UncaughtExceptionHandler
1869 * <tt>uncaughtException</tt> method, then the default handler's
1870 * <tt>uncaughtException</tt> method will be invoked.
1890 * @see ThreadGroup#uncaughtException
1933 * @see ThreadGroup#uncaughtException
1946 getUncaughtExceptionHandler().uncaughtException(this, e);
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketTest.java631 @Override public void uncaughtException(Thread thread, Throwable ex) { method in class:SSLSocketTest.TestUncaughtExceptionHandler

Completed in 192 milliseconds