Home
last modified time | relevance | path

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

/openbmc/phosphor-post-code-manager/inc/
H A Dpost_code.hpp98 postCodeListPath(PostCodeListPathPrefix + std::to_string(node)), in PostCode()
152 fs::create_directories(postCodeListPath);
154 if (!deserialize(postCodeListPath / PostCodeDataVersionName, version) ||
159 fs::remove_all(postCodeListPath);
160 fs::create_directories(postCodeListPath);
167 deserialize(postCodeListPath / CurrentBootCycleIndexName,
170 deserialize(postCodeListPath / CurrentBootCycleCountName, count);
193 fs::path postCodeListPath; member
/openbmc/phosphor-post-code-manager/src/
H A Dpost_code.cpp155 std::uintmax_t n = fs::remove_all(postCodeListPath); in deleteAll()
157 << postCodeListPath << std::endl; in deleteAll()
158 fs::create_directories(postCodeListPath); in deleteAll()
178 deserializePostCodes(postCodeListPath / std::to_string(bootNum), codes); in getPostCodes()
195 deserializePostCodes(postCodeListPath / std::to_string(bootNum), codes); in getPostCodesWithTimeStamp()
204 serialize(postCodeListPath); in savePostCodes()