Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/commands/modem_simulator/
Dmisc_service.cpp163 auto gm_time = *std::gmtime(&now); in TimeUpdate() local
170 << gm_time.tm_year % 100 << "/" << std::setfill('0') << std::setw(2) in TimeUpdate()
171 << gm_time.tm_mon + 1 << "/" << std::setfill('0') << std::setw(2) in TimeUpdate()
172 << gm_time.tm_mday << ":" << std::setfill('0') << std::setw(2) in TimeUpdate()
173 << gm_time.tm_hour << ":" << std::setfill('0') << std::setw(2) in TimeUpdate()
174 << gm_time.tm_min << ":" << std::setfill('0') << std::setw(2) in TimeUpdate()
175 << gm_time.tm_sec << (tzdiff >= 0 ? '+' : '-') in TimeUpdate()
Dpdu_parser.cpp315 auto gm_time = *std::gmtime(&now); in GetCurrentTimeStamp() local
318 auto t_gm_time = std::mktime(&gm_time); in GetCurrentTimeStamp()