Home
last modified time | relevance | path

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

/hardware/google/aemu/host-common/
Dlogging.cpp105 std::tm ts_parts = {}; in OutputLog() local
107 localtime_s(&ts_parts, &timestamp_s); in OutputLog()
109 localtime_r(&timestamp_s, &ts_parts); in OutputLog()
118 logger("%c%02d%02d %02d:%02d:%02d.%06" PRId64 " %7s %s:%d] ", severity, ts_parts.tm_mon + 1, in OutputLog()
119 ts_parts.tm_mday, ts_parts.tm_hour, ts_parts.tm_min, ts_parts.tm_sec, microseconds, in OutputLog()
123 ts_parts.tm_mon + 1, ts_parts.tm_mday, ts_parts.tm_hour, ts_parts.tm_min, in OutputLog()
124 ts_parts.tm_sec, microseconds, getCachedThreadID(), GetFileBasename(file), line); in OutputLog()