Lines Matching refs:GangWorker
63 GangWorker* WorkGang::allocate_worker(uint which) {
64 GangWorker* new_worker = new GangWorker(this, which);
80 _gang_workers = NEW_C_HEAP_ARRAY(GangWorker*, total_workers(), mtInternal);
82 vm_exit_out_of_memory(0, "Cannot create GangWorker array.");
92 GangWorker* new_worker = allocate_worker(worker);
93 assert(new_worker != NULL, "Failed to allocate GangWorker");
118 GangWorker* AbstractWorkGang::gang_worker(uint i) const {
120 GangWorker* result = NULL;
229 // GangWorker methods.
231 GangWorker::GangWorker(AbstractWorkGang* gang, uint id) {
237 void GangWorker::run() {
242 void GangWorker::initialize() {
257 void GangWorker::loop() {
343 bool GangWorker::is_GC_task_thread() const {
347 bool GangWorker::is_ConcurrentGC_thread() const {
351 void GangWorker::print_on(outputStream* st) const {