Searched defs:thread (Results 301 - 325 of 379) sorted by relevance

<<111213141516

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDirectAudioDevice.java37 // to improve this class's thread safety.
591 // read/write thread, that's why isStartedRunning()
1020 private Thread thread; field in class:DirectAudioDevice.DirectClip
1094 // if we got this far, we can instanciate the thread
1097 thread = JSSecurityManager.createThread(this,
1102 // cannot start in createThread, because the thread
1103 // uses the "thread" variable as indicator if it should
1105 thread.start();
1310 // dispose of thread
1311 Thread oldThread = thread;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DExecutionManager.java260 * A thread is removed from the list just before the
261 * thread terminates.
272 * Note that a thread group may be empty, or contain no threads as
508 void clearPreviousStep(ThreadReference thread) { argument
510 * A previous step may not have completed on this thread;
515 if (request.thread().equals(thread)) {
522 private void generalStep(ThreadReference thread, int size, int depth) argument
529 clearPreviousStep(thread);
531 StepRequest request = reqMgr.createStepRequest(thread,
539 stepIntoInstruction(ThreadReference thread) argument
544 stepOverInstruction(ThreadReference thread) argument
549 stepIntoLine(ThreadReference thread) argument
555 stepOverLine(ThreadReference thread) argument
561 stepOut(ThreadReference thread) argument
570 suspendThread(ThreadReference thread) argument
575 resumeThread(ThreadReference thread) argument
580 stopThread(ThreadReference thread) argument
594 threadInfo(ThreadReference thread) argument
628 removeThreadInfo(ThreadReference thread) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java58 * Save current thread and stack frame. (BugId 4296031)
62 Thread thread = new Thread("asynchronous jdb command") {
76 * processed while it was running. Restore the thread and
84 MessageOutput.println("Current thread isnt suspended.");
94 thread.start();
161 MessageOutput.println("is not a valid thread id", idToken);
381 // Note any thread group changes
388 * Do a bit of filling with whitespace to get thread ID
389 * and thread names to line up in the listing, and also
391 * very long thread name
615 clearPreviousStep(ThreadReference thread) argument
700 doKill(ThreadReference thread, StringTokenizer t) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java262 public synchronized void addThreadFilter(ThreadReference thread) { argument
263 validateMirror(thread);
268 .create((ThreadReferenceImpl)thread));
543 ThreadReferenceImpl thread; field in class:EventRequestManagerImpl.StepRequestImpl
547 StepRequestImpl(ThreadReference thread, int size, int depth) { argument
548 this.thread = (ThreadReferenceImpl)thread;
591 request.thread().equals(thread)) {
593 "Only one step request allowed per thread");
610 public ThreadReference thread() { method in class:EventRequestManagerImpl.StepRequestImpl
757 createStepRequest(ThreadReference thread, int size, int depth) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp770 // continue and the thread will safepoint at the next bytecode dispatch.
873 // been entered yet, we set the thread local variable
876 // check this thread local flag.
1062 __ stop("Wrong thread state in native stub");
1087 // Switch thread to "native transition" state before reading the synchronization state.
1090 // Java thread A, in _thread_in_native state, loads _not_synchronized and is preempted.
1091 // VM thread changes sync state to synchronizing and suspends threads for GC.
1101 // Write serialization page so VM thread can do a pseudo remote membar.
1102 // We use the current thread pointer to calculate a thread specifi
1637 JavaThread* thread = JavaThread::current(); local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp677 const Register thread = LP64_ONLY(r15_thread) NOT_LP64(rsi); local
679 NOT_LP64(__ get_thread(thread));
681 const Address stack_base(thread, Thread::stack_base_offset());
682 const Address stack_size(thread, Thread::stack_size_offset());
696 // verify that thread stack base is non-zero
701 // verify that thread stack size is non-zero
1034 NOT_LP64(__ movptr(unlock_thread, STATE(_thread));) // get thread
1037 // been entered yet, we set the thread local variable
1077 NOT_LP64(__ movl(rax, STATE(_thread));) // get thread
1108 const Register thread local
1333 thread); local
1768 const Register thread = NOT_LP64(rcx) LP64_ONLY(r15_thread); local
[all...]
H A DtemplateInterpreter_x86_32.cpp246 const Register thread = rcx; local
247 __ get_thread(thread);
248 __ cmpptr(Address(thread, Thread::pending_exception_offset()), (int32_t)NULL_WORD);
486 const Register thread = rsi; local
488 __ get_thread(thread);
490 const Address stack_base(thread, Thread::stack_base_offset());
491 const Address stack_size(thread, Thread::stack_size_offset());
498 // verify that thread stack base is non-zero
503 // verify that thread stack size is non-zero
833 rcx /* thread */,
986 const Register thread = rdi; local
1654 const Register thread = rcx; local
1735 __ super_call_VM_leaf(CAST_FROM_FN_PTR(address, Deoptimization::popframe_preserve_args), thread, rax, rdi); local
1773 __ super_call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::popframe_move_outgoing_args), thread, rax, rbx); local
1819 __ super_call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), thread, rdx); local
1833 const Register thread = rcx; local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp157 JavaThread* thread = JavaThread::current(); local
158 RegisterMap reg_map(thread, false);
159 frame runtime_frame = thread->last_frame();
168 JavaThread* thread = JavaThread::current(); local
169 RegisterMap reg_map(thread, false);
170 frame runtime_frame = thread->last_frame();
172 Deoptimization::deoptimize_frame(thread, caller_frame.id());
310 JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, klassOopDesc* klass))
314 instanceKlassHandle h(thread, klass);
320 thread
577 exception_handler_for_pc(JavaThread* thread) argument
1110 move_klass_patching(JavaThread* thread) argument
1139 access_field_patching(JavaThread* thread) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DdebugInit.c102 static void initialize(JNIEnv *env, jthread thread, EventIndex triggering_ei);
431 * Since the triggering event comes in on an application thread, some of the
432 * initialization is difficult to do here. Specifically, this thread along
451 cbEarlyVMInit(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread) argument
458 initialize(env, thread, EI_VM_INIT);
495 jthread thread, jmethodID method, jlocation location,
502 LOG_CB(("cbEarlyException: thread=%p", thread));
525 initialize(env, thread, EI_EXCEPTION);
542 initialize(env, thread, EI_EXCEPTIO
494 cbEarlyException(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception, jmethodID catch_method, jlocation catch_location) argument
684 initialize(JNIEnv *env, jthread thread, EventIndex triggering_ei) argument
[all...]
H A DeventFilter.c55 jthread thread; member in struct:ThreadFilter
84 jthread thread; member in struct:StepFilter
193 if ( filter->u.ThreadOnly.thread != NULL ) {
194 tossGlobalRef(env, &(filter->u.ThreadOnly.thread));
223 jthread thread = filter->u.Step.thread; local
224 error = stepControl_endStep(thread);
226 tossGlobalRef(env, &(filter->u.Step.thread));
303 jthread thread ; local
328 thread
380 jthread thread; local
732 eventFilter_setThreadOnlyFilter(HandlerNode *node, jint index, jthread thread) argument
919 eventFilter_setStepFilter(HandlerNode *node, jint index, jthread thread, jint size, jint depth) argument
1262 jthread thread = requestThread(node); local
1286 jthread thread; local
[all...]
H A DeventHandler.c93 * some java thread in the middle of VM_DEATH, this seems troubled.
286 * posted and before the thread has resumed execution.
301 * if SINGLE_STEP events are also enabled for the thread, then
309 * is recorded in the ThreadNode. If the next event for the thread
319 * thread is handled in skipEventReport().
323 deferEventReport(JNIEnv *env, jthread thread, argument
337 threadControl_getInstructionStepMode(thread)
340 threadControl_saveCLEInfo(env, thread, ei,
349 threadControl_saveCLEInfo(env, thread, ei,
368 skipEventReport(JNIEnv *env, jthread thread, EventInde argument
388 reportEvents(JNIEnv *env, jbyte sessionID, jthread thread, EventIndex ei, jclass clazz, jmethodID method, jlocation location, struct bag *eventBag) argument
549 jthread thread; local
748 cbSingleStep(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location) argument
770 cbBreakpoint(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location) argument
792 cbFramePop(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jboolean wasPoppedByException) argument
819 cbException(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception, jmethodID catch_method, jlocation catch_location) argument
847 cbThreadStart(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread) argument
865 cbThreadEnd(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread) argument
883 cbClassPrepare(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jclass klass) argument
912 cbClassLoad(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jclass klass) argument
932 cbFieldAccess(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field) argument
959 cbFieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char signature_type, jvalue new_value) argument
988 cbExceptionCatch(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception) argument
1011 cbMethodEntry(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method) argument
1032 cbMethodExit(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jboolean wasPoppedByException, jvalue return_value) argument
1060 cbMonitorContendedEnter(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object) argument
1093 cbMonitorContendedEntered(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object) argument
1126 cbMonitorWait(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object, jlong timeout) argument
1168 cbMonitorWaited(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object, jboolean timed_out) argument
1210 cbVMInit(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread) argument
1641 createInternal(EventIndex ei, HandlerFunction func, jthread thread, jclass clazz, jmethodID method, jlocation location, jboolean permanent) argument
1689 eventHandler_createInternalThreadOnly(EventIndex ei, HandlerFunction func, jthread thread) argument
1698 eventHandler_createInternalBreakpoint(HandlerFunction func, jthread thread, jclass clazz, jmethodID method, jlocation location) argument
[all...]
H A DeventHelper.c33 * Event helper thread command commandKinds
41 * Event helper thread command singleKinds
62 jthread thread; member in struct:FrameEventCommandSingle
81 jthread thread; member in struct:ReportInvokeDoneCommand
86 jthread thread; member in struct:ReportVMInitCommand
90 jthread thread; member in struct:SuspendThreadCommand
283 (void)outStream_writeObjectRef(env, out, evinfo->thread);
290 (void)outStream_writeObjectRef(env, out, evinfo->thread);
301 (void)outStream_writeObjectRef(env, out, evinfo->thread);
318 (void)outStream_writeObjectRef(env, out, evinfo->thread);
486 suspendWithInvokeEnabled(jbyte policy, jthread thread) argument
508 jthread thread = NULL; local
769 jthread thread; local
1030 eventHelper_recordFrameEvent(jint id, jbyte suspendPolicy, EventIndex ei, jthread thread, jclass clazz, jmethodID method, jlocation location, int needReturnValue, jvalue returnValue, struct bag *eventBag) argument
1077 eventHelper_reportInvokeDone(jbyte sessionID, jthread thread) argument
1096 eventHelper_reportVMInit(JNIEnv *env, jbyte sessionID, jthread thread, jbyte suspendPolicy) argument
1111 eventHelper_suspendThread(jbyte sessionID, jthread thread) argument
[all...]
H A Dutil.h209 jthread thread; member in struct:__anon515
411 jthread thread, jmethodID method, jlocation location);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp35 #include "runtime/thread.hpp"
205 jobject jni_reference(JavaThread *thread, Handle hndl) { argument
206 return JNIHandles::make_local(thread, hndl());
218 void destroy_jni_reference(JavaThread *thread, jobject jobj) { argument
249 // return true if event is enabled globally or for any thread
282 static bool is_thread_fully_suspended(JavaThread *thread,
287 // JVMTI API helper functions which are called at safepoint or thread is suspended.
598 JvmtiMonitorClosure(JavaThread* thread, JavaThread *calling_thread, argument
601 _java_thread = thread;
H A DjvmtiEventController.cpp35 #include "runtime/thread.hpp"
214 JavaThread *thread = _state->get_thread(); local
215 if (thread->has_last_Java_frame()) {
219 // second, we deoptimize all methods on the thread's stack when
221 // thread (nothing to do if no Java frames yet).
224 RegisterMap rm(thread, false);
225 for (vframe* vf = thread->last_java_vframe(&rm); vf; vf = vf->sender()) {
270 // These methods are thread safe either because they are called
287 static void set_user_enabled(JvmtiEnvBase *env, JavaThread *thread,
302 static void thread_started(JavaThread *thread);
647 thread_started(JavaThread *thread) argument
667 thread_ended(JavaThread *thread) argument
789 set_user_enabled(JvmtiEnvBase *env, JavaThread *thread, jvmtiEvent event_type, bool enabled) argument
944 set_user_enabled(JvmtiEnvBase *env, JavaThread *thread, jvmtiEvent event_type, bool enabled) argument
1012 thread_started(JavaThread *thread) argument
1019 thread_ended(JavaThread *thread) argument
[all...]
H A DjvmtiImpl.cpp64 // JavaThread used to wrap a thread started by an agent
76 JvmtiAgentThread::start_function_wrapper(JavaThread *thread, TRAPS) { argument
79 // of the thread is given in JavaThread::thread_main().
80 assert(thread->is_Java_thread(), "debugger thread should be a Java Thread");
81 assert(thread == JavaThread::current(), "sanity check");
83 JvmtiAgentThread *dthread = (JvmtiAgentThread *)thread;
240 Thread *thread = Thread::current(); local
241 if (thread->is_in_stack((address)&_method)) {
242 thread
253 Thread *thread = Thread::current(); local
292 Thread *thread = Thread::current(); local
534 VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type) argument
547 VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value) argument
561 VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index) argument
607 is_assignable(const char* ty_sign, Klass* klass, Thread* thread) argument
826 VM_GetReceiver( JavaThread* thread, JavaThread* caller_thread, jint depth) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp80 #define DTRACE_MONITOR_PROBE_COMMON(klassOop, thread) \
83 jlong jtid = SharedRuntime::get_java_tid(thread); \
96 #define DTRACE_MONITOR_WAIT_PROBE(monitor, klassOop, thread, millis) \
99 DTRACE_MONITOR_PROBE_COMMON(klassOop, thread); \
105 #define DTRACE_MONITOR_PROBE(probe, monitor, klassOop, thread) \
108 DTRACE_MONITOR_PROBE_COMMON(klassOop, thread); \
116 #define DTRACE_MONITOR_WAIT_PROBE(monitor, klassOop, thread, millis) \
119 DTRACE_MONITOR_PROBE_COMMON(klassOop, thread); \
127 #define DTRACE_MONITOR_PROBE(probe, monitor, klassOop, thread) \
130 DTRACE_MONITOR_PROBE_COMMON(klassOop, thread); \
356 ObjectLocker(Handle obj, Thread* thread, bool doLock) argument
718 current_thread_holds_lock(JavaThread* thread, Handle h_obj) argument
1606 ReleaseJavaMonitorsClosure(Thread* thread) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp34 #include "runtime/thread.hpp"
93 // Acquire the lock to update the peak thread count
94 // to synchronize with thread addition and removal.
99 void ThreadService::add_thread(JavaThread* thread, bool daemon) { argument
101 if (thread->is_hidden_from_external_view() ||
102 thread->is_jvmti_agent_thread()) {
118 void ThreadService::remove_thread(JavaThread* thread, bool daemon) { argument
121 if (thread->is_hidden_from_external_view() ||
122 thread->is_jvmti_agent_thread()) {
135 assert(jt == JavaThread::current(), "Called by current thread");
145 get_current_contended_monitor(JavaThread* thread) argument
275 reset_contention_count_stat(JavaThread* thread) argument
282 reset_contention_time_stat(JavaThread* thread) argument
638 JavaThread* thread = java_lang_Thread::thread(owner_thread_obj); local
645 add_lock(JavaThread* thread, instanceOop o) argument
663 thread_concurrent_locks(JavaThread* thread) argument
690 ThreadConcurrentLocks(JavaThread* thread) argument
720 ThreadSnapshot(JavaThread* thread) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp225 Thread* const thread = ThreadLocalStorage::get_thread_slow(); local
226 VMError err(thread, file, line, error_msg, detail_msg);
251 Thread* thread = ThreadLocalStorage::get_thread_slow(); local
252 VMError(thread, file, line, size, message).report_and_die();
506 // Prints the stack of the current Java thread
508 tty->print(" for thread: ");
537 tty->print(" for thread: ");
551 tty->print(" for thread: ");
765 tty->print_cr(" ps() - print current thread stack");
766 tty->print_cr(" pss() - print all thread stack
[all...]
H A Dostream.cpp461 // for gc log rotation from thread other than VMThread, a sub type of VM_Operation
474 Thread *thread = Thread::current(); local
475 assert(thread == NULL ||
476 (thread->is_VM_thread() && SafepointSynchronize::is_at_safepoint()),
739 ThreadLocalStorage::thread() == NULL ||
751 // do not attempt to lock unless we know the thread and the VM is healthy
764 _log_file->print_cr("<writer thread='" UINTX_FORMAT "'/>", writer_id);
874 // For -Xloggc:<file> option - called in runtime/thread.cpp
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c55 * Spawning of the cpu sample loop thread and listener thread is done here.
96 * just blocks to prevent further execution of the thread.
398 "thread=y|n thread in traces? n\n"
639 } else if( strcmp(option,"thread") == 0) {
641 option_error("thread option value must be y|n");
879 static void reset_class_load_status(JNIEnv *env, jthread thread);
922 reset_class_load_status(JNIEnv *env, jthread thread) argument
954 event_class_load(env, thread, classe
1143 cbVMInit(jvmtiEnv *jvmti, JNIEnv *env, jthread thread) argument
1430 cbThreadStart(jvmtiEnv *jvmti, JNIEnv *env, jthread thread) argument
1441 cbThreadEnd(jvmtiEnv *jvmti, JNIEnv *env, jthread thread) argument
1586 cbClassLoad(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jclass klass) argument
1609 cbClassPrepare(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jclass klass) argument
1666 cbExceptionCatch(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jmethodID method, jlocation location, jobject exception) argument
1679 cbMonitorWait(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object, jlong timeout) argument
1691 cbMonitorWaited(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object, jboolean timed_out) argument
1703 cbMonitorContendedEnter(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object) argument
1715 cbMonitorContendedEntered(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object) argument
[all...]
H A Dhprof_tls.c50 * Thread Local Storage for the thread. The table is only searched
54 * way of it's serial number, which should be unique per thread.
56 * Each active thread that we have seen should have a unique TlsIndex
61 * for the thread. As each method exits, the statistics for the trace
64 * For cpu=samples, each thread is checked to see if it's runnable,
74 * Initial number of stack elements to track per thread. This
76 * methods deep a thread calls. This stack doubles in size for each
91 jboolean agent_thread; /* Is thread our own agent thread? */
92 jthread globalref; /* Global reference for thread */
107 jthread thread; member in struct:SearchData
248 search(JNIEnv *env, jthread thread) argument
329 get_trace(jthread thread, SerialNumber thread_serial_num, int depth, jboolean skip_init, FrameIndex *frames_buffer, jvmtiFrameInfo *jframes_buffer) argument
370 jthread thread; local
426 insure_method_on_stack(jthread thread, TlsInfo *info, jlong current_time, FrameIndex frame_index, jmethodID method) argument
559 jthread thread; local
589 get_serial_number(JNIEnv *env, jthread thread) argument
605 jthread thread; local
684 tls_find_or_create(JNIEnv *env, jthread thread) argument
723 tls_agent_thread(JNIEnv *env, jthread thread) argument
771 tls_get_tracker_status(JNIEnv *env, jthread thread, jboolean skip_init, jint **ppstatus, TlsIndex* pindex, SerialNumber *pthread_serial_num, TraceIndex *ptrace_index) argument
859 jthread thread; local
939 tls_pop_exception_catch(TlsIndex index, jthread thread, jmethodID method) argument
980 tls_pop_method(TlsIndex index, jthread thread, jmethodID method) argument
1128 jthread thread; local
[all...]
/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.c300 findTraceInfo(jvmtiEnv *jvmti, jthread thread, TraceFlavor flavor) argument
306 if ( thread != NULL ) {
310 /* Before VM_INIT thread could be NULL, watch out */
312 error = (*jvmti)->GetStackTrace(jvmti, thread, 0, MAX_FRAMES+2,
328 /* If thread==NULL, it's assumed this is before VM_START */
353 HEAP_TRACKER_native_newobj(JNIEnv *env, jclass klass, jthread thread, jobject o) argument
360 tinfo = findTraceInfo(gdata->jvmti, thread, TRACE_USER);
366 HEAP_TRACKER_native_newarr(JNIEnv *env, jclass klass, jthread thread, jobject a) argument
373 tinfo = findTraceInfo(gdata->jvmti, thread, TRACE_USER);
434 cbVMInit(jvmtiEnv *jvmti, JNIEnv *env, jthread thread) argument
723 cbVMObjectAlloc(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jobject object, jclass object_klass, jlong size) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java979 * Unblock the given thread blocked on <tt>park</tt>, or, if it is
982 * caller must somehow ensure that the thread has not been
985 * reference to the thread) but this is not nearly-automatically
987 * @param thread the thread to unpark.
990 public native void unpark(Object thread); argument
993 * Block current thread, returning when a balancing
995 * already occurred, or the thread is interrupted, or, if not
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java2030 protected String genJavaStackTraceTitle(JavaThread thread) { argument
2033 buf.append(thread.getThreadName());
2037 public String genHTMLForJavaStackTrace(JavaThread thread) { argument
2039 buf.genHTMLPrologue(genJavaStackTraceTitle(thread));
2042 buf.append(thread.getThreadState().toString());
2045 for (JavaVFrame vf = thread.getLastJavaVFrameDbg(); vf != null; vf = vf.javaSender()) {

Completed in 388 milliseconds

<<111213141516