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.cpp139 std::ostringstream timeOffsetStr; in savePostCodes() local
141 timeOffsetStr << std::fixed; in savePostCodes()
143 timeOffsetStr << std::setprecision(4); in savePostCodes()
145 timeOffsetStr << static_cast<double>(usTimeOffset) / 1000 / 1000; in savePostCodes()
153 timeOffsetStr.str().c_str(), hexCode.str().c_str())); in savePostCodes()
/openbmc/bmcweb/redfish-core/lib/
H A Dsystems_logservices_postcodes.hpp219 std::ostringstream timeOffsetStr; in fillPostCodeEntry() local
221 timeOffsetStr << std::fixed; in fillPostCodeEntry()
223 timeOffsetStr << std::setprecision(4); in fillPostCodeEntry()
225 timeOffsetStr << static_cast<double>(usTimeOffset) / 1000 / 1000; in fillPostCodeEntry()
228 std::string timeOffsetString = timeOffsetStr.str(); in fillPostCodeEntry()