Searched refs:tm_timestamp (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/subsys/logging/ |
D | log_output.c | 178 struct tm tm_timestamp = {0}; in timestamp_print() local 181 gmtime_r(&time_seconds, &tm_timestamp); in timestamp_print() 185 strftime(time_str, sizeof(time_str), "%FT%T", &tm_timestamp); in timestamp_print() 192 tm_timestamp.tm_year + 1900, tm_timestamp.tm_mon + 1, in timestamp_print() 193 tm_timestamp.tm_mday, tm_timestamp.tm_hour, in timestamp_print() 194 tm_timestamp.tm_min, tm_timestamp.tm_sec, in timestamp_print() 211 struct tm tm_timestamp = {0}; in timestamp_print() local 214 gmtime_r(&time_seconds, &tm_timestamp); in timestamp_print() 218 strftime(time_str, sizeof(time_str), "%F %T", &tm_timestamp); in timestamp_print() 225 tm_timestamp.tm_year + 1900, tm_timestamp.tm_mon + 1, in timestamp_print() [all …]
|