Searched defs:thread (Results 101 - 125 of 379) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/com/sun/jdi/
H A DRepStep.java71 private void createStep(ThreadReference thread) { argument
73 requestManager.createStepRequest(thread,
84 ThreadReference thread = null;
91 // get thread for setting step later
92 thread = ((VMStartEvent)event).thread();
98 createStep(thread);
/openjdk7/jdk/test/java/awt/EventDispatchThread/LoopRobustness/
H A DLoopRobustness.java70 throw new RuntimeException("Test FAILED: second thread hasn't notified MainThread");
96 Button b = new Button("Press me to test the AWT-Event Queue thread");
140 public void uncaughtException(Thread thread, Throwable e) { argument
157 throw new RuntimeException("Die, AWT-Event Queue thread!");
/openjdk7/jdk/test/javax/swing/JFileChooser/6798062/
H A Dbug6798062.java55 private Thread thread; field in class:bug6798062
101 thread = new MyThread(slider.getValue(), tfLink.getText());
102 thread.start();
110 thread.interrupt();
111 thread = null;
193 // The thread was interrupted
/openjdk7/jdk/test/javax/swing/border/
H A DTest6981576.java88 public void uncaughtException(Thread thread, Throwable throwable) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DCompiledVFrame.java42 public CompiledVFrame(Frame fr, RegisterMap regMap, JavaThread thread, ScopeDesc scope, boolean mayBeImprecise) { argument
43 super(fr, regMap, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/amd64/
H A DAMD64CurrentFrameGuess.java51 private JavaThread thread; field in class:AMD64CurrentFrameGuess
60 JavaThread thread) {
62 this.thread = thread;
72 if (thread.getLastJavaSP() != null) {
73 setValues(thread.getLastJavaSP(), thread.getLastJavaFP(), null);
110 // stack pointer from the thread context was pointing
128 RegisterMap map = thread.newRegisterMap(false);
185 // and attempt to look to thread
59 AMD64CurrentFrameGuess(AMD64ThreadContext context, JavaThread thread) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_amd64/
H A DBsdAMD64JavaThreadPDAccess.java83 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
84 Address fp = thread.getLastJavaFP();
88 return new X86Frame(thread.getLastJavaSP(), fp);
91 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
92 return new X86RegisterMap(thread, updateMap);
95 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
98 AMD64CurrentFrameGuess guesser = new AMD64CurrentFrameGuess(context, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/
H A DBsdX86JavaThreadPDAccess.java78 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
79 Address fp = thread.getLastJavaFP();
83 return new X86Frame(thread.getLastJavaSP(), fp);
86 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
87 return new X86RegisterMap(thread, updateMap);
90 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
93 X86CurrentFrameGuess guesser = new X86CurrentFrameGuess(context, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64CurrentFrameGuess.java45 private JavaThread thread; field in class:IA64CurrentFrameGuess
53 JavaThread thread) {
55 this.thread = thread;
70 /** May be null if getting values from thread-local storage; take
52 IA64CurrentFrameGuess(IA64ThreadContext context, JavaThread thread) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_amd64/
H A DLinuxAMD64JavaThreadPDAccess.java79 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
80 Address fp = thread.getLastJavaFP();
84 return new X86Frame(thread.getLastJavaSP(), fp);
87 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
88 return new X86RegisterMap(thread, updateMap);
91 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
94 AMD64CurrentFrameGuess guesser = new AMD64CurrentFrameGuess(context, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_x86/
H A DLinuxX86JavaThreadPDAccess.java78 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
79 Address fp = thread.getLastJavaFP();
83 return new X86Frame(thread.getLastJavaSP(), fp);
86 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
87 return new X86RegisterMap(thread, updateMap);
90 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
93 X86CurrentFrameGuess guesser = new X86CurrentFrameGuess(context, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_amd64/
H A DSolarisAMD64JavaThreadPDAccess.java81 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
82 Address fp = thread.getLastJavaFP();
86 Address pc = thread.getLastJavaPC();
88 return new X86Frame(thread.getLastJavaSP(), fp, pc);
90 return new X86Frame(thread.getLastJavaSP(), fp);
94 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
95 return new X86RegisterMap(thread, updateMap);
98 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
101 AMD64CurrentFrameGuess guesser = new AMD64CurrentFrameGuess(context, thread);
131 // Get the address of the thread I
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_x86/
H A DSolarisX86JavaThreadPDAccess.java83 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
84 Address fp = thread.getLastJavaFP();
88 Address pc = thread.getLastJavaPC();
90 return new X86Frame(thread.getLastJavaSP(), fp, pc);
92 return new X86Frame(thread.getLastJavaSP(), fp);
96 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
97 return new X86RegisterMap(thread, updateMap);
100 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
103 X86CurrentFrameGuess guesser = new X86CurrentFrameGuess(context, thread);
133 // Get the address of the thread I
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_amd64/
H A DWin32AMD64JavaThreadPDAccess.java82 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
83 Address fp = thread.getLastJavaFP();
87 Address pc = thread.getLastJavaPC();
89 return new X86Frame(thread.getLastJavaSP(), fp, pc);
91 return new X86Frame(thread.getLastJavaSP(), fp);
95 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
96 return new X86RegisterMap(thread, updateMap);
99 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
102 AMD64CurrentFrameGuess guesser = new AMD64CurrentFrameGuess(context, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_x86/
H A DWin32X86JavaThreadPDAccess.java81 public Frame getLastFramePD(JavaThread thread, Address addr) { argument
82 Address fp = thread.getLastJavaFP();
86 Address pc = thread.getLastJavaPC();
88 return new X86Frame(thread.getLastJavaSP(), fp, pc);
90 return new X86Frame(thread.getLastJavaSP(), fp);
94 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) { argument
95 return new X86RegisterMap(thread, updateMap);
98 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) { argument
101 X86CurrentFrameGuess guesser = new X86CurrentFrameGuess(context, thread);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86CurrentFrameGuess.java50 private JavaThread thread; field in class:X86CurrentFrameGuess
59 JavaThread thread) {
61 this.thread = thread;
71 if (thread.getLastJavaSP() != null) {
72 setValues(thread.getLastJavaSP(), thread.getLastJavaFP(), null);
110 // stack pointer from the thread context was pointing
128 RegisterMap map = thread.newRegisterMap(false);
185 // and attempt to look to thread
58 X86CurrentFrameGuess(X86ThreadContext context, JavaThread thread) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.hpp57 static frame last_frame(JavaThread *thread) { return thread->last_frame(); } argument
58 static methodOop method(JavaThread *thread) { return last_frame(thread).interpreter_frame_method(); } argument
59 static address bcp(JavaThread *thread) { return last_frame(thread).interpreter_frame_bcp(); } argument
60 static int bci(JavaThread *thread) { return last_frame(thread).interpreter_frame_bci(); } argument
61 static void set_bcp_and_mdp(address bcp, JavaThread*thread);
62 static Bytecodes::Code code(JavaThread *thread) { argument
66 already_resolved(JavaThread *thread) argument
67 bytecode(JavaThread *thread) argument
68 get_index_u1(JavaThread *thread, Bytecodes::Code bc) argument
70 get_index_u2(JavaThread *thread, Bytecodes::Code bc) argument
72 get_index_u2_cpcache(JavaThread *thread, Bytecodes::Code bc) argument
74 get_index_u4(JavaThread *thread, Bytecodes::Code bc) argument
76 number_of_dimensions(JavaThread *thread) argument
78 cache_entry_at(JavaThread *thread, int i) argument
79 cache_entry(JavaThread *thread) argument
130 is_breakpoint(JavaThread *thread) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DgcLocker.cpp97 void GC_locker::jni_lock(JavaThread* thread) { argument
98 assert(!thread->in_critical(), "shouldn't currently be in a critical region");
100 // Block entering threads if we know at least one thread is in a
102 // We check that at least one thread is in a critical region before
103 // blocking because blocked threads are woken up by a thread exiting
108 thread->enter_critical();
113 void GC_locker::jni_unlock(JavaThread* thread) { argument
114 assert(thread->in_last_critical(), "should be exiting critical region");
118 thread->exit_critical();
120 // We're the last thread ou
[all...]
H A DresourceArea.hpp43 // The actual allocation areas are thread local. Typical usage:
98 void initialize(Thread *thread) { argument
99 _area = thread->resource_area();
110 ResourceMark(Thread *thread) { argument
111 assert(thread == Thread::current(), "not the current thread");
112 initialize(thread);
115 ResourceMark(Thread *thread);
181 // the thread that will use it and we can use a much simpler scheme for the vframeArray
195 void initialize(Thread *thread) { argument
208 DeoptResourceMark(Thread *thread) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DClassType.java125 /** Perform method invocation with only the invoking thread resumed */
138 * The method invocation will occur in the specified thread.
139 * Method invocation can occur only if the specified thread
140 * has been suspended by an event which occurred in that thread.
143 * {@link VirtualMachine#suspend} or when the specified thread
178 * {@link ThreadReference#resume}, so if the thread's suspend
187 * if invokeMethod is called from the client's event handler thread. In this
188 * case, this thread will be waiting for the invokeMethod to complete and
193 * not be done from the client's event handler thread.
200 * Only the specified thread wil
239 invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) argument
345 newInstance(ThreadReference thread, Method method, List<? extends Value> arguments, int options) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DClientHandler.java60 //thread = new Thread (this) ;
61 thread = createThread(this);
64 //thread = mbs.getThreadAllocatorSrvIf().obtainThread(objectName,this) ;
66 // Note: the thread will be started by the subclass.
69 // thread service
77 if (thread != null) {
78 thread.interrupt() ;
85 if (thread != null) {
87 thread.join() ;
126 protected Thread thread field in class:ClientHandler
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadInfo.java43 private ThreadReference thread; field in class:ThreadInfo
58 ThreadInfo (ThreadReference thread) { argument
59 this.thread = thread;
63 public ThreadReference thread() { method in class:ThreadInfo
64 return thread;
83 return thread.frame(index);
104 status = thread.status();
105 frameCount = thread.frameCount();
/openjdk7/jdk/src/share/back/
H A DStackFrameImpl.c34 validateThreadFrame(jthread thread, FrameID frame) argument
39 error = threadControl_suspendCount(thread, &count);
42 serror = validateFrameID(thread, frame);
53 writeVariableValue(JNIEnv *env, PacketOutputStream *out, jthread thread, argument
64 (gdata->jvmti, thread, fnum, slot, &value.l);
84 (gdata->jvmti, thread, fnum, slot, &intValue);
92 (gdata->jvmti, thread, fnum, slot, &intValue);
99 (gdata->jvmti, thread, fnum, slot, &value.f);
105 (gdata->jvmti, thread, fnum, slot, &value.d);
111 (gdata->jvmti, thread, fnu
146 readVariableValue(JNIEnv *env, PacketInputStream *in, jthread thread, FrameNumber fnum, jint slot, jbyte typeKey) argument
223 jthread thread; local
281 jthread thread; local
342 jthread thread; local
422 jthread thread; local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.cpp54 Handle::Handle(Thread* thread, oop obj) { argument
55 assert(thread == Thread::current(), "sanity check");
59 _handle = thread->handle_area()->allocate_handle(obj);
94 // The thread local handle areas should not get very large
106 void HandleMark::initialize(Thread* thread) { argument
107 _thread = thread;
109 _area = thread->handle_area();
119 // Link this in the thread
120 set_previous_handle_mark(thread->last_handle_mark());
121 thread
[all...]
H A DregisterMap.hpp57 // 1) It provides access to the thread for which the stack belongs. The
58 // thread object is needed in order to get sender of a deoptimized frame.
75 // register map as: RegisterMap map(thread, false);
89 JavaThread* _thread; // Reference to current thread
101 RegisterMap(JavaThread *thread, bool update_map = true);
131 JavaThread *thread() const { return _thread; } function in class:RegisterMap

Completed in 135 milliseconds

1234567891011>>