Home
last modified time | relevance | path

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

/openbmc/phosphor-post-code-manager/src/
H A Dpost_code.cpp263 std::ostringstream timeOffsetStr; in savePostCodes() local
265 timeOffsetStr << std::fixed; in savePostCodes()
267 timeOffsetStr << std::setprecision(4); in savePostCodes()
269 timeOffsetStr << static_cast<double>(usTimeOffset) / 1000 / 1000; in savePostCodes()
277 timeOffsetStr.str().c_str(), hexCode.str().c_str())); in savePostCodes()
/openbmc/bmcweb/redfish-core/lib/
H A Dsystems_logservices_postcodes.hpp257 std::ostringstream timeOffsetStr; in fillPostCodeEntry() local
259 timeOffsetStr << std::fixed; in fillPostCodeEntry()
261 timeOffsetStr << std::setprecision(4); in fillPostCodeEntry()
263 timeOffsetStr << static_cast<double>(usTimeOffset) / 1000 / 1000; in fillPostCodeEntry()
266 std::string timeOffsetString = timeOffsetStr.str(); in fillPostCodeEntry()