Searched defs:myThread (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsLockVerifier.cpp44 Thread* myThread = Thread::current(); local
48 if (myThread->is_ConcurrentGC_thread()) {
51 assert(myThread == ConcurrentMarkSweepThread::cmst(),
55 } else if (myThread->is_VM_thread()) {
62 assert(myThread->is_GC_task_thread(), "Unexpected thread type");
67 if (myThread->is_VM_thread()
68 || myThread->is_ConcurrentGC_thread()
69 || myThread->is_Java_thread()) {
82 } else if (myThread->is_GC_task_thread()) {
/openjdk7/hotspot/test/compiler/6912517/
H A DTest.java38 private final Thread myThread; field in class:Test
47 myThread = new Thread(this);
48 myThread.setName("Runner: " + id);
49 myThread.start();
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DClientCommunicatorAdmin.java170 myThread = Thread.currentThread();
172 while (state != TERMINATED && !myThread.isInterrupted()) {
180 if (state == TERMINATED || myThread.isInterrupted()) {
188 if (state == TERMINATED || myThread.isInterrupted()) {
225 if (myThread != null && myThread != Thread.currentThread()) {
226 myThread.interrupt();
230 private Thread myThread; field in class:ClientCommunicatorAdmin.Checker
/openjdk7/jdk/test/com/sun/jdi/
H A DMonitorEventTest.java58 myThread t1 = new myThread();
93 class myThread extends Thread { class in inherits:Thread
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.cpp74 size_t capacity = Universe::heap()->tlab_capacity(myThread()) / HeapWordSize;
75 size_t unused = Universe::heap()->unsafe_max_tlab_alloc(myThread()) / HeapWordSize;
122 myThread()->incr_allocated_bytes(used_bytes());
150 (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize));
160 myThread(), myThread()->osthread()->thread_id(),
212 size_t capacity = Universe::heap()->tlab_capacity(myThread()) / HeapWordSize;
254 init_sz = (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize) /
280 Thread* thrd = myThread();
315 Thread* ThreadLocalAllocBuffer::myThread() { function in class:ThreadLocalAllocBuffer
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.cpp109 Thread* myThread = Thread::current(); local
110 assert(myThread->is_VM_thread(), "Only VM thread may execute a safepoint");
424 DEBUG_ONLY(Thread* myThread = Thread::current();)
425 assert(myThread->is_VM_thread(), "Only VM thread can execute a safepoint");
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp152 Thread* myThread = Thread::current(); local
153 methodHandle h_this(myThread, this);
155 bool has_capability = myThread->is_VM_thread() ||
156 myThread->is_ConcurrentGC_thread() ||
157 myThread->is_GC_task_thread();

Completed in 42 milliseconds