Searched refs:recursions (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DObjectMonitor.java94 public long recursions() { return recursionsField.getValue(addr); } method in class:ObjectMonitor
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DMonitorCacheDumpPanel.java88 tty.println(" _recursions: " + mon.recursions());
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.hpp131 intptr_t recursions() const { return _recursions; } function in class:ObjectMonitor
206 void reenter(intptr_t recursions, TRAPS);
H A DobjectMonitor.cpp1377 void ObjectMonitor::reenter(intptr_t recursions, TRAPS) { argument
1385 _recursions = recursions;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DObjectReferenceImpl.java315 entryCount = (int) mark.monitor().recursions() + 1;
318 // so the recursions field is not valid. We have to count the
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp473 intptr_t recursions = ObjectSynchronizer::complete_exit(lockObject, THREAD); local
476 ObjectSynchronizer::reenter(lockObject, recursions, THREAD);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp1021 ret.entry_count = mon->recursions() + 1;
1024 // so the recursions field is not valid. We have to count the
H A DjvmtiEnv.cpp2989 intptr_t recursion = rmonitor->recursions();

Completed in 67 milliseconds