Searched refs:_threads (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp32 _threads(NULL), _n_threads(0),
57 _threads = NEW_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads, mtGC);
66 _threads[i] = t;
84 if (_threads != NULL) {
86 _threads[i]->stop();
93 if (_threads != NULL) {
95 _threads[i]->initialize();
101 if (_threads != NULL) {
103 delete _threads[i];
105 FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads, mtG
[all...]
H A DconcurrentG1Refine.hpp40 ConcurrentG1RefineThread** _threads; member in class:ConcurrentG1Refine
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.hpp362 GrowableArray<JavaThread*>* _threads; member in class:DeadlockCycle
370 void add_thread(JavaThread* t) { _threads->append(t); }
371 void reset() { _is_deadlock = false; _threads->clear(); }
374 int num_threads() { return _threads->length(); }
375 GrowableArray<JavaThread*>* threads() { return _threads; }
H A DthreadService.cpp806 _threads = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<JavaThread*>(INITIAL_ARRAY_SIZE, true);
811 delete _threads;
822 int len = _threads->length();
824 currentThread = _threads->at(i);
867 currentThread = _threads->at(j);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp272 _threads = NULL;
287 _threads = threads;
341 // Snapshot threads in the given _threads array
344 instanceHandle th = _threads->at(i);
H A Dvm_operations.hpp363 GrowableArray<instanceHandle>* _threads; member in class:VM_ThreadDump

Completed in 48 milliseconds