Searched defs:currentThread (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/java/lang/Thread/
H A DUncaughtExceptions.sh143 final Thread mainThread = currentThread();
156 final Thread mainThread = currentThread();
169 currentThread().setUncaughtExceptionHandler(new OK()); function
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DContextManager.java54 private ThreadReference currentThread; field in class:ContextManager
66 currentThread = null;
127 return currentThread;
131 if (t != currentThread) {
132 currentThread = t;
138 currentThread = t;
186 if (currentThread == null) {
189 return setCurrentFrameIndex(currentThread, newIndex, false);
194 boolean sameThread = t.equals(currentThread);
223 return getCurrentFrame(runtime.threadInfo(currentThread));
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParserImpl.java152 private Thread currentThread; field in class:DOMParserImpl
926 currentThread = Thread.currentThread();
930 if (abortNow && currentThread.isInterrupted()) {
937 if (abortNow && currentThread.isInterrupted()) {
983 currentThread = Thread.currentThread();
987 if (abortNow && currentThread.isInterrupted()) {
994 if (abortNow && currentThread.isInterrupted()) {
1126 if(currentThread !
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java264 public static native Thread currentThread(); method in class:Thread
358 Thread parent = currentThread();
875 if ((this != Thread.currentThread()) ||
930 if (this != Thread.currentThread())
962 return currentThread().isInterrupted(true);
1181 return currentThread().getThreadGroup().activeCount();
1211 return currentThread().getThreadGroup().enumerate(tarray);
1546 if (this != Thread.currentThread()) {
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp296 JavaThread *currentThread, *previousThread; local
316 currentThread = jt;
328 cycle->add_thread(currentThread);
330 currentThread = Threads::owning_thread_from_monitor_owner((address)waitingToLockMonitor->owner(),
336 currentThread = threadObj != NULL ? java_lang_Thread::thread(threadObj) : NULL;
338 currentThread = NULL;
343 if (currentThread == NULL) {
347 if (currentThread->depth_first_number() < 0) {
349 currentThread->set_depth_first_number(globalDfn++);
350 } else if (currentThread
819 JavaThread* currentThread; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_util.c876 jobject currentThread = NULL; local
890 "currentThread",
904 currentThread = (*env)->CallStaticObjectMethod(
907 /*JNU_PrintString(env, "getCurrentThread() -> ", JNU_ToString(env,currentThread));*/
908 return currentThread;

Completed in 83 milliseconds