Searched refs:_file_count (Results 1 - 4 of 4) sorted by relevance

/openjdk9/hotspot/src/share/vm/logging/
H A DlogFileOutput.hpp55 uint _file_count; member in class:LogFileOutput
71 return _file_count > 0 && _rotate_size > 0 && _current_size >= _rotate_size;
76 if (_current_file == _file_count) {
H A DlogFileOutput.cpp47 _rotate_size(DefaultFileSize), _file_count(DefaultFileCount),
187 _file_count = static_cast<uint>(value);
215 if (_file_count > 0) {
217 _file_count_max_digits = number_of_digits(_file_count - 1);
224 _file_name, _file_count, _rotate_size / K);
226 if (_file_count > 0 && file_exists(_file_name)) {
235 _file_count,
253 if (_file_count == 0 && is_regular_file(_file_name)) {
315 if (_file_count == 0) {
434 out->print("filecount=%u,filesize=" SIZE_FORMAT "%s", _file_count,
[all...]
/openjdk9/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.hpp88 static int _file_count; member in class:IdealGraphPrinter
H A DidealGraphPrinter.cpp74 int IdealGraphPrinter::_file_count = 0; member in class:IdealGraphPrinter
126 if (_file_count != 0) {
132 st.print("%d%s", _file_count, dot);
134 st.print("%s%d", PrintIdealGraphFile, _file_count);
142 _file_count++;

Completed in 143 milliseconds