Searched refs:partially (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.hpp1171 // It pops and scans objects from the local queue. If partially is
1173 // partially is false, then it stops when the queue is empty.
1174 void drain_local_queue(bool partially);
1176 // drains the local queue. If partially is true, then it stops when
1178 // partially if false, it tries to empty them totally.
1179 void drain_global_stack(bool partially);
H A DconcurrentMark.cpp3268 // we only partially drain the local queue and global stack
3627 void CMTask::drain_local_queue(bool partially) { argument
3631 // drain it partially (so that other tasks can steal if they run out
3634 if (partially) {
3676 void CMTask::drain_global_stack(bool partially) { argument
3681 assert(partially || _task_queue->size() == 0, "invariant");
3684 // drain it partially (so that other tasks can steal if they run out
3690 if (partially) {
3704 drain_local_queue(partially);
4010 // ...then partially drai
[all...]

Completed in 46 milliseconds