Searched defs:reenter (Results 1 - 5 of 5) sorted by relevance
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | synchronizer.hpp | 84 static void reenter (Handle obj, intptr_t recursion, TRAPS); 161 // reenter reclaims lock with original recursion count 163 void reenter(intptr_t recursion, TRAPS) { ObjectSynchronizer::reenter(_obj, recursion, CHECK); } function in class:ObjectLocker
|
| H A D | synchronizer.cpp | 275 // complete_exit()/reenter() are used to wait on a nested lock 281 // 4) reenter lock1 with original recursion count 283 // NOTE: must use heavy weight monitor to handle complete_exit/reenter() 296 // NOTE: must use heavy weight monitor to handle complete_exit/reenter() 297 void ObjectSynchronizer::reenter(Handle obj, intptr_t recursion, TRAPS) { function in class:ObjectSynchronizer 298 TEVENT (reenter) ; 306 monitor->reenter(recursion, THREAD);
|
| H A D | objectMonitor.cpp | 1346 // complete_exit/reenter operate as a wait without waiting 1375 // reenter() enters a lock and sets recursion count 1376 // complete_exit/reenter operate as a wait without waiting 1377 void ObjectMonitor::reenter(intptr_t recursions, TRAPS) { function in class:ObjectMonitor 1382 guarantee(_owner != Self, "reenter already owner"); 1384 guarantee (_recursions == 0, "reenter recursion");
|
| /openjdk7/jdk/test/com/sun/jdi/ |
| H A D | PopSynchronousTest.java | 222 void reenter(String methodName) throws Exception { method in class:PopSynchronousTest 252 reenter(to); 280 reenter("a"); 288 reenter("c");
|
| /openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/ |
| H A D | Commands.java | 2041 void commandPopFrames(StringTokenizer t, boolean reenter) { argument 2063 if (reenter) {
|
Completed in 50 milliseconds