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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.cpp118 GrowableArray<MonitorInfo*>* mons = monitors(); local
119 GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(mons->length());
120 if (mons->is_empty()) return result;
128 for (int index = (mons->length()-1); index >= 0; index--) {
129 MonitorInfo* monitor = mons->at(index);
182 GrowableArray<MonitorInfo*>* mons = monitors(); local
183 if (!mons->is_empty()) {
185 for (int index = (mons->length()-1); index >= 0; index--) {
186 MonitorInfo* monitor = mons->at(index);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp634 GrowableArray<MonitorInfo*>* mons = jvf->monitors(); local
635 if (!mons->is_empty()) {
636 for (int i = 0; i < mons->length(); i++) {
637 MonitorInfo *mi = mons->at(i);
733 GrowableArray<MonitorInfo*>* mons = jvf->monitors(); local
734 if (mons->is_empty()) {
756 for (int i = 0; i < mons->length(); i++) {
757 MonitorInfo *mi = mons->at(i);

Completed in 27 milliseconds