Searched refs:tm_struct (Results 1 – 3 of 3) sorted by relevance
55 struct tm tm_struct; in LogStream() local57 localtime_s(&tm_struct, &clock); in LogStream()59 localtime_r(&clock, &tm_struct); in LogStream()62 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()
2282 struct tm tm_struct; in mz_zip_time_to_dos_time() local2283 struct tm *tm = &tm_struct; in mz_zip_time_to_dos_time()