Home
last modified time | relevance | path

Searched refs:_archivePath (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Drepository.cpp64 _maxNumPELs(maxNumPELs), _archivePath(basePath / "logs" / "archive") in Repository()
71 if (!fs::exists(_archivePath)) in Repository()
73 fs::create_directories(_archivePath); in Repository()
154 for (auto& dirEntry : fs::directory_iterator(_archivePath)) in restore()
254 if (!fs::exists(_archivePath)) in remove()
256 fs::create_directories(_archivePath); in remove()
260 auto fileName = _archivePath / pel->second.path.filename(); in remove()
572 for (const auto& dirEntry : fs::directory_iterator(_archivePath)) in sizeWarning()
782 auto path = _archivePath / getPELFilename(pel.id(), pel.commitTime()); in archivePEL()
H A Drepository.hpp617 const std::filesystem::path _archivePath; member in openpower::pels::Repository