Home | History | Annotate | Download | only in utils

Lines Matching defs:thread

23 import java.lang.Thread.UncaughtExceptionHandler;
54 public Thread newThread(final Runnable runnable) {
55 Thread thread = new Thread(runnable, TAG);
56 thread.setUncaughtExceptionHandler(new UncaughtExceptionHandler() {
58 public void uncaughtException(Thread thread, Throwable ex) {
62 return thread;
145 if (Thread.interrupted()) {