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

/openjdk9/hotspot/src/share/vm/logging/
H A DlogConfiguration.cpp41 LogOutput** LogConfiguration::_outputs = NULL; member in class:LogConfiguration
99 assert(_outputs == NULL, "Should not initialize _outputs before this function, initialize called twice?");
100 _outputs = NEW_C_HEAP_ARRAY(LogOutput*, 2, mtLogging);
101 _outputs[0] = &StdoutLog;
102 _outputs[1] = &StderrLog;
110 FREE_C_HEAP_ARRAY(LogOutput*, _outputs);
164 if (strcmp(_outputs[i]->name(), name) == 0) {
193 _outputs = REALLOC_C_HEAP_ARRAY(LogOutput*, _outputs, _n_output
[all...]
H A DlogConfiguration.hpp55 static LogOutput** _outputs; member in class:LogConfiguration

Completed in 58 milliseconds