Searched refs:_num_threads (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp271 _num_threads = 0; // 0 indicates all threads
286 _num_threads = num_threads;
325 if (_num_threads == 0) {
343 for (int i = 0; i < _num_threads; i++) {
H A Dvm_operations.hpp362 int _num_threads; member in class:VM_ThreadDump
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.hpp340 int _num_threads; member in class:ThreadDumpResult
353 int num_threads() { return _num_threads; }
H A DthreadService.cpp384 ThreadDumpResult::ThreadDumpResult() : _num_threads(0), _num_snapshots(0), _snapshots(NULL), _next(NULL), _last(NULL) {
392 ThreadDumpResult::ThreadDumpResult(int num_threads) : _num_threads(num_threads), _num_snapshots(0), _snapshots(NULL), _next(NULL), _last(NULL) {
414 assert(_num_threads == 0 || _num_snapshots < _num_threads,
415 "_num_snapshots must be less than _num_threads");
H A DheapDumper.cpp1343 int _num_threads; member in class:VM_HeapDumper
1410 _num_threads = 0;
1426 for (int i=0; i < _num_threads; i++) {
1667 for (int i=0; i < _num_threads; i++) {
1814 _stack_traces[_num_threads++] = stack_trace;
1842 int stack_serial_num = _num_threads + STACK_TRACE_ID;
1844 writer()->write_u4((u4) _num_threads); // thread serial number

Completed in 61 milliseconds