Searched refs:ts_parts (Results 1 – 1 of 1) sorted by relevance
/hardware/google/aemu/host-common/ |
D | logging.cpp | 105 std::tm ts_parts = {}; in OutputLog() local 107 localtime_s(&ts_parts, ×tamp_s); in OutputLog() 109 localtime_r(×tamp_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()
|