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.cpp54 _maxNumPELs(maxNumPELs), _archivePath(basePath / "logs" / "archive") in Repository()
61 if (!fs::exists(_archivePath)) in Repository()
63 fs::create_directories(_archivePath); in Repository()
144 for (auto& dirEntry : fs::directory_iterator(_archivePath)) in restore()
244 if (!fs::exists(_archivePath)) in remove()
246 fs::create_directories(_archivePath); in remove()
250 auto fileName = _archivePath / pel->second.path.filename(); in remove()
562 for (const auto& dirEntry : fs::directory_iterator(_archivePath)) in sizeWarning()
772 auto path = _archivePath / getPELFilename(pel.id(), pel.commitTime()); in archivePEL()
H A Drepository.hpp617 const std::filesystem::path _archivePath; member in openpower::pels::Repository