Home
last modified time | relevance | path

Searched refs:getDateTimeUintMs (Results 1 – 6 of 6) sorted by relevance

/openbmc/bmcweb/redfish-core/include/
H A Dtelemetry_readings.hpp34 redfish::time_utils::getDateTimeUintMs(timestamp); in toMetricValues()
53 json["Timestamp"] = redfish::time_utils::getDateTimeUintMs(timestamp); in fillReport()
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dtime_utils_test.cpp124 EXPECT_EQ(getDateTimeUintMs(uint64_t{1638312095123}), in TEST()
127 EXPECT_EQ(getDateTimeUintMs(std::numeric_limits<uint64_t>::max()), in TEST()
129 EXPECT_EQ(getDateTimeUintMs(std::numeric_limits<uint64_t>::min()), in TEST()
/openbmc/bmcweb/redfish-core/include/utils/
H A Dtime_utils.hpp47 std::string getDateTimeUintMs(uint64_t milliSecondsSinceEpoch);
H A Deventlog_utils.hpp601 redfish::time_utils::getDateTimeUintMs(entry.Timestamp); in fillEventLogLogEntryFromDbusLogEntry()
603 redfish::time_utils::getDateTimeUintMs(entry.UpdateTimestamp); in fillEventLogLogEntryFromDbusLogEntry()
/openbmc/bmcweb/redfish-core/src/
H A Ddbus_log_watcher.cpp39 event.timestamp = redfish::time_utils::getDateTimeUintMs(entry.Timestamp); in eventLogObjectFromDBus()
/openbmc/bmcweb/redfish-core/src/utils/
H A Dtime_utils.cpp395 std::string getDateTimeUintMs(uint64_t milliSecondsSinceEpoch) in getDateTimeUintMs() function