Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/
DOldThrowableTest.java26 Throwable thr = new Throwable(message, npe); in test_ConstructorLStringLThrowable() local
27 assertEquals("message is incorrect.", message, thr.getMessage()); in test_ConstructorLStringLThrowable()
28 assertEquals("cause is incorrect.", npe, thr.getCause()); in test_ConstructorLStringLThrowable()
30 thr = new Throwable(null, npe); in test_ConstructorLStringLThrowable()
31 assertNull("message is not null.", thr.getMessage()); in test_ConstructorLStringLThrowable()
32 assertEquals("cause is incorrect.", npe, thr.getCause()); in test_ConstructorLStringLThrowable()
34 thr = new Throwable(message, null); in test_ConstructorLStringLThrowable()
35 assertEquals("message is incorrect.", message, thr.getMessage()); in test_ConstructorLStringLThrowable()
36 assertNull("cause is not null.", thr.getCause()); in test_ConstructorLStringLThrowable()
42 Throwable thr = new Throwable(npe); in test_ConstructorLThrowable() local
[all …]
DOldThreadGroupTest.java192 for(MyThread thr:subThreads) { in test_enumerateLThreadGroupArrayLZ()
193 thr.start(); in test_enumerateLThreadGroupArrayLZ()
210 for(MyThread thr:subThreads1) { in test_enumerateLThreadGroupArrayLZ()
211 thr.start(); in test_enumerateLThreadGroupArrayLZ()
219 for(MyThread thr:subThreads) { in test_enumerateLThreadGroupArrayLZ()
220 thr.interrupt(); in test_enumerateLThreadGroupArrayLZ()
DOldThreadTest.java408 Thread thr = new Thread(); in test_start() local
409 thr.start(); in test_start()
411 thr.start(); in test_start()
/libcore/ojluni/src/main/java/sun/nio/fs/
DAbstractPoller.java62 Thread thr = new Thread(thisRunnable); in start()
63 thr.setDaemon(true); in start()
64 thr.start(); in start()
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
DURLJarFile.java228 } catch (Throwable thr) { in retrieve()
232 thr.addSuppressed(ioe); in retrieve()
234 throw thr; in retrieve()