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

/openjdk7/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp52 int number_of_monitors() const { return _number_of_monitors; } function in class:MonitorChunk
55 BasicObjectLock* at(int index) { assert(index >= 0 && index < number_of_monitors(), "out of bounds check"); return &monitors()[index]; }
62 bool contains(void* addr) const { return (addr >= (void*) monitors()) && (addr < (void*) (monitors() + number_of_monitors())); }
H A DmonitorChunk.cpp43 for (int index = 0; index < number_of_monitors(); index++) {
H A DvframeArray.cpp270 int locks = monitors() == NULL ? 0 : monitors()->number_of_monitors();
430 int locks = monitors() == NULL ? 0 : monitors()->number_of_monitors();

Completed in 31 milliseconds