Searched defs:thread (Results 51 - 75 of 379) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/amd64/
H A DAMD64CFrame.java47 public CFrame sender(ThreadProxy thread) { argument
48 AMD64ThreadContext context = (AMD64ThreadContext) thread.getContext();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/x86/
H A DX86CFrame.java47 public CFrame sender(ThreadProxy thread) { argument
48 X86ThreadContext context = (X86ThreadContext) thread.getContext();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/amd64/
H A DLinuxAMD64CFrame.java55 public CFrame sender(ThreadProxy thread) { argument
56 AMD64ThreadContext context = (AMD64ThreadContext) thread.getContext();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/sparc/
H A DLinuxSPARCCFrame.java60 public CFrame sender(ThreadProxy thread) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/x86/
H A DLinuxX86CFrame.java56 public CFrame sender(ThreadProxy thread) { argument
57 X86ThreadContext context = (X86ThreadContext) thread.getContext();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMonitorInfoImpl.java40 ThreadReference thread; field in class:MonitorInfoImpl
44 ThreadReference thread, int dpth) {
47 this.thread = thread;
67 public ThreadReference thread() { method in class:MonitorInfoImpl
69 return thread;
43 MonitorInfoImpl(VirtualMachine vm, ObjectReference mon, ThreadReference thread, int dpth) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DExceptionEvent.java31 private Oop thread; field in class:ExceptionEvent
40 public ExceptionEvent(Oop thread, argument
49 this.thread = thread;
59 public Oop thread() { return thread; } method in class:ExceptionEvent
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DDeadlockDetector.java62 // this thread was already visited
67 JavaThread thread = (JavaThread)e.getKey();
68 previousThread = thread;
72 // heavyweight monitor a thread is waiting to lock.
74 waitingToLockMonitor = thread.getCurrentPendingMonitor();
82 waitingToLockBlocker = thread.getCurrentParkBlocker();
102 // No dependency on another thread
106 // First visit to this thread
150 // initialize dfn for each thread to -1
155 private static int dfn(JavaThread thread) { argument
167 printOneDeadlock(PrintStream tty, JavaThread thread, boolean concurrentLocks) argument
[all...]
H A DExternalVFrame.java33 ExternalVFrame(Frame fr, RegisterMap regMap, JavaThread thread, boolean mayBeImprecise) { argument
34 super(fr, regMap, thread);
H A DStackFrameStream.java29 /** <P> StackFrameStream iterates through the frames of a thread
32 a thread is stopped at a safepoint, all registers are saved, not
38 for(StackFrameStream fst = new StackFrameStream(thread); !fst.isDone(); fst.next()) {
49 /** Equivalent to StackFrameStream(thread, true) */
50 public StackFrameStream(JavaThread thread) { argument
51 this(thread, true);
54 public StackFrameStream(JavaThread thread, boolean update) { argument
57 Assert.that(thread.hasLastJavaFrame(), "sanity check");
59 fr = thread.getLastFrame();
60 regMap = thread
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64RegisterMap.java34 public IA64RegisterMap(JavaThread thread, boolean updateMap) { argument
35 super(thread, updateMap);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86RegisterMap.java34 public X86RegisterMap(JavaThread thread, boolean updateMap) { argument
35 super(thread, updateMap);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DJavaStackTracePanel.java77 public void setJavaThread(final JavaThread thread) { argument
78 setStackTraceText(htmlGen.genHTMLForJavaStackTrace(thread));
/openjdk7/hotspot/src/share/vm/memory/
H A DresourceArea.cpp47 // Allocation in thread-local resource area
51 extern char* resource_allocate_bytes(Thread* thread, size_t size, AllocFailType alloc_failmode) { argument
52 return thread->resource_area()->allocate_bytes(size, alloc_failmode);
65 ResourceMark::ResourceMark(Thread *thread) { argument
66 assert(thread == Thread::current(), "not the current thread");
67 initialize(thread);
70 DeoptResourceMark::DeoptResourceMark(Thread *thread) { argument
71 assert(thread == Thread::current(), "not the current thread");
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dc2compiler.cpp91 CompilerThread* thread = CompilerThread::current(); local
93 HandleMark handle_mark(thread);
95 OptoRuntime::generate(thread->env());
103 // The first compiler thread that gets here will initialize the
108 // Note that this is being called from a compiler thread not the
109 // main startup thread.
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DExceptionRequest.java87 * the given thread.
88 * @param thread the thread to filter on.
93 void addThreadFilter(ThreadReference thread); argument
H A DMethodEntryRequest.java51 * the given thread.
52 * @param thread the thread to filter on.
57 void addThreadFilter(ThreadReference thread); argument
H A DMethodExitRequest.java51 * the given thread.
52 * @param thread the thread to filter on.
57 void addThreadFilter(ThreadReference thread); argument
H A DMonitorContendedEnterRequest.java31 * Request for notification of a thread in the target VM
32 * attempting to enter a monitor already acquired by another thread.
52 * the given thread.
53 * @param thread the thread to filter on.
58 void addThreadFilter(ThreadReference thread); argument
H A DMonitorContendedEnteredRequest.java31 * Request for notification of a thread in the target VM entering a monitor
32 * after waiting for it to be released by another thread.
52 * the given thread.
53 * @param thread the thread to filter on.
58 void addThreadFilter(ThreadReference thread); argument
H A DMonitorWaitRequest.java31 * Request for notification when a thread in the target VM is about to
32 * wait on a monitor object. That is, a thread is entering Object.wait().
52 * the given thread.
53 * @param thread the thread to filter on.
58 void addThreadFilter(ThreadReference thread); argument
H A DMonitorWaitedRequest.java31 * Request for notification when a thread in the target VM has finished waiting on
32 * a monitor object. That is, a thread is leaving Object.wait(). "
52 * the given thread.
53 * @param thread the thread to filter on.
58 void addThreadFilter(ThreadReference thread); argument
H A DWatchpointRequest.java52 * the given thread.
53 * @param thread the thread to filter on.
58 void addThreadFilter(ThreadReference thread); argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMonitorInfoImpl.java39 ThreadReference thread; field in class:MonitorInfoImpl
43 ThreadReferenceImpl thread, int dpth) {
46 this.thread = thread;
48 thread.addListener(this);
64 "Invalid stack frame thread listener");
85 public ThreadReference thread() { method in class:MonitorInfoImpl
87 return thread;
42 MonitorInfoImpl(VirtualMachine vm, ObjectReference mon, ThreadReferenceImpl thread, int dpth) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiUtil.hpp77 Thread* thread; local
82 thread = ThreadLocalStorage::thread();
83 if (thread == NULL) {
86 return thread->resource_area();

Completed in 121 milliseconds

1234567891011>>