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

/openjdk9/hotspot/src/share/vm/logging/
H A DlogConfiguration.cpp42 size_t LogConfiguration::_n_outputs = 0; member in class:LogConfiguration
103 _n_outputs = 2;
107 for (size_t i = _n_outputs; i > 0; i--) {
163 for (size_t i = 0; i < _n_outputs; i++) {
192 size_t idx = _n_outputs++;
193 _outputs = REALLOC_C_HEAP_ARRAY(LogOutput*, _outputs, _n_outputs, mtLogging);
199 assert(idx > 1 && idx < _n_outputs,
200 "idx must be in range 1 < idx < _n_outputs, but idx = " SIZE_FORMAT
201 " and _n_outputs = " SIZE_FORMAT, idx, _n_outputs);
[all...]
H A DlogConfiguration.hpp56 static size_t _n_outputs; member in class:LogConfiguration

Completed in 42 milliseconds