Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dbcd_time.cpp46 tm* gmTime = gmtime(&t); in getBCDTime() local
47 assert(gmTime != nullptr); in getBCDTime()
49 int year = 1900 + gmTime->tm_year; in getBCDTime()
52 bcd.month = toBCD(gmTime->tm_mon + 1); in getBCDTime()
53 bcd.day = toBCD(gmTime->tm_mday); in getBCDTime()
54 bcd.hour = toBCD(gmTime->tm_hour); in getBCDTime()
55 bcd.minutes = toBCD(gmTime->tm_min); in getBCDTime()
56 bcd.seconds = toBCD(gmTime->tm_sec); in getBCDTime()
/openbmc/phosphor-host-ipmid/
H A Dstoragehandler.cpp633 struct tm* gmTime; in ipmiStorageGetSelTimeUtcOffset() local
639 gmTime = gmtime(&timep); in ipmiStorageGetSelTimeUtcOffset()
640 auto validGmTime = mktime(gmTime); in ipmiStorageGetSelTimeUtcOffset()