Searched refs:gBlockList (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.hpp132 static ObjectMonitor* gBlockList; member in class:ObjectSynchronizer
H A Dsynchronizer.cpp153 ObjectMonitor * ObjectSynchronizer::gBlockList = NULL ; member in class:ObjectSynchronizer
832 ObjectMonitor* block = gBlockList;
858 for (ObjectMonitor* block = gBlockList; block != NULL; block = next(block)) {
1032 // The trick of using the 1st element in the block as gBlockList
1056 // Add the new block to the list of extant blocks (gBlockList).
1059 temp[0].FreeNext = gBlockList;
1060 gBlockList = temp;
1537 } else for (ObjectMonitor* block = gBlockList; block != NULL; block = next(block)) {
1651 ObjectMonitor* block = gBlockList;
1671 ObjectMonitor* block = gBlockList;
[all...]
H A DvmStructs.cpp1078 static_field(ObjectSynchronizer, gBlockList, ObjectMonitor*) \

Completed in 46 milliseconds