Searched refs:tm_struct (Results 1 – 2 of 2) sorted by relevance
59 struct tm tm_struct; in LogStream() local61 localtime_s(&tm_struct, &clock); in LogStream()63 localtime_r(&clock, &tm_struct); in LogStream()66 strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", &tm_struct); in LogStream()
72 struct tm *tm = NULL, tm_struct; in expand_percent_expression() local81 tm = (*flags & FLAG_UTC) ? gmtime_r(&ctx->now, &tm_struct) : in expand_percent_expression()82 localtime_r(&ctx->now, &tm_struct); in expand_percent_expression()