Searched defs:ThreadConcurrentLocks (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp606 for (ThreadConcurrentLocks* t = _map; t != NULL;) {
607 ThreadConcurrentLocks* tcl = t;
646 ThreadConcurrentLocks* tcl = thread_concurrent_locks(thread);
653 tcl = new ThreadConcurrentLocks(thread);
663 ThreadConcurrentLocks* ConcurrentLocksDump::thread_concurrent_locks(JavaThread* thread) {
664 for (ThreadConcurrentLocks* tcl = _map; tcl != NULL; tcl = tcl->next()) {
674 ThreadConcurrentLocks* tcl = thread_concurrent_locks(t);
690 ThreadConcurrentLocks::ThreadConcurrentLocks(JavaThread* thread) { function in class:ThreadConcurrentLocks
696 ThreadConcurrentLocks
[all...]
H A DthreadService.hpp43 class ThreadConcurrentLocks;
208 ThreadConcurrentLocks* _concurrent_locks;
240 ThreadConcurrentLocks* get_concurrent_locks() { return _concurrent_locks; }
243 void set_concurrent_locks(ThreadConcurrentLocks* l) { _concurrent_locks = l; }
302 class ThreadConcurrentLocks : public CHeapObj<mtInternal> { class in inherits:CHeapObj
305 ThreadConcurrentLocks* _next;
308 ThreadConcurrentLocks(JavaThread* thread);
309 ~ThreadConcurrentLocks();
312 void set_next(ThreadConcurrentLocks* n) { _next = n; }
313 ThreadConcurrentLocks* nex
[all...]

Completed in 607 milliseconds