Searched refs:thread_oop (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DserviceThread.cpp39 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK); local
46 // Initialize thread_oop to put it into the system threadGroup
49 JavaCalls::call_special(&result, thread_oop,
70 java_lang_Thread::set_thread(thread_oop(), thread);
71 java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
72 java_lang_Thread::set_daemon(thread_oop());
73 thread->set_threadObj(thread_oop());
H A Dthread.cpp415 oop thread_oop = jt->threadObj(); local
416 if (thread_oop != NULL) {
417 prio = java_lang_Thread::priority(thread_oop);
996 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK_NULL); local
998 java_lang_Thread::set_thread(thread_oop(), thread);
999 java_lang_Thread::set_priority(thread_oop(), NormPriority);
1000 thread->set_threadObj(thread_oop());
1005 JavaCalls::call_special(&result, thread_oop,
1012 return thread_oop();
1115 instanceHandle thread_oop local
[all...]
H A Dos.cpp319 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK); local
324 // Initialize thread_oop to put it into the system threadGroup
327 JavaCalls::call_special(&result, thread_oop,
341 thread_oop, // ARG 1
358 java_lang_Thread::set_thread(thread_oop(), signal_thread);
359 java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
360 java_lang_Thread::set_daemon(thread_oop());
362 signal_thread->set_threadObj(thread_oop());
H A Dthread.hpp402 static void send_async_exception(oop thread_oop, oop java_throwable);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.cpp182 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK_NULL); local
187 // Initialize thread_oop to put it into the system threadGroup
190 JavaCalls::call_special(&result, thread_oop,
211 java_lang_Thread::set_thread(thread_oop(), res);
212 java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
213 java_lang_Thread::set_daemon(thread_oop());
215 res->set_threadObj(thread_oop());
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.cpp459 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK); local
464 // Initialize thread_oop to put it into the system threadGroup
467 JavaCalls::call_special(&result, thread_oop,
481 thread_oop, // ARG 1
493 java_lang_Thread::set_thread(thread_oop(), listener_thread);
494 java_lang_Thread::set_daemon(thread_oop());
496 listener_thread->set_threadObj(thread_oop());
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp179 oop thread_oop = JNIHandles::resolve_external_guard(thread); local
180 if (thread_oop == NULL) {
183 if (!thread_oop->is_a(SystemDictionary::Thread_klass())) {
186 JavaThread* java_thread = java_lang_Thread::thread(thread_oop);
376 oop thread_oop = JNIHandles::resolve_external_guard(event_thread); local
377 if (thread_oop == NULL) {
380 if (!thread_oop->is_a(SystemDictionary::Thread_klass())) {
383 java_thread = java_lang_Thread::thread(thread_oop);
673 oop thread_oop; local
677 thread_oop
919 oop thread_oop = JNIHandles::resolve_external_guard(thread); local
951 oop thread_oop; local
1122 oop thread_oop = JNIHandles::resolve_external_guard(thread); local
[all...]
H A DjvmtiEnvBase.cpp1192 // Note that either or both of thr and thread_oop
1195 VM_GetMultipleStackTraces::fill_frames(jthread jt, JavaThread *thr, oop thread_oop) { argument
1206 if (thread_oop != NULL) {
1208 state = (jint)java_lang_Thread::get_thread_status(thread_oop);
1281 oop thread_oop = JNIHandles::resolve_external_guard(jt); local
1282 if (thread_oop == NULL || !thread_oop->is_a(SystemDictionary::Thread_klass())) {
1286 fill_frames(jt, java_lang_Thread::thread(thread_oop), thread_oop);
1298 oop thread_oop local
[all...]
H A DjvmtiEnvBase.hpp458 void fill_frames(jthread jt, JavaThread *thr, oop thread_oop);
H A Djvm.cpp2820 oop thread_oop = JNIHandles::resolve_non_null(jthread); variable
2821 return java_lang_Thread::is_alive(thread_oop);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp878 instanceHandle thread_oop = klass->allocate_instance_handle(CHECK_0); local
881 // Initialize thread_oop to put it into the system threadGroup
884 JavaCalls::call_special(&result, thread_oop,
912 java_lang_Thread::set_thread(thread_oop(), compiler_thread);
918 java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
935 java_lang_Thread::set_daemon(thread_oop());
937 compiler_thread->set_threadObj(thread_oop());

Completed in 3013 milliseconds