Home
last modified time | relevance | path

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

/openbmc/openpower-vpd-parser/vpd-manager/src/
H A Dlogger.cpp300 m_filePath{i_filePath}, m_maxEntries{i_maxEntries}
304 const bool l_logFileExists = std::filesystem::exists(m_filePath, l_ec);
317 if (!std::filesystem::exists(m_filePath.parent_path(), l_ec))
323 m_filePath.parent_path().string() +
330 if (!std::filesystem::create_directories(m_filePath.parent_path(),
337 m_filePath.string() + "]. Error: " + l_ec.message());
346 m_fileStream.open(m_filePath, std::ios::out | std::ios::ate);
351 std::ifstream l_readFileStream{m_filePath};
/openbmc/openpower-vpd-parser/vpd-manager/include/
H A Dlogger.hpp41 std::filesystem::path m_filePath{}; member in vpd::ILogFileHandler