Home
last modified time | relevance | path

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

/external/google-breakpad/src/processor/
Dlogging.cc59 struct tm tm_struct; in LogStream() local
61 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()
/external/e2fsprogs/e2fsck/
Dlogfile.c72 struct tm *tm = NULL, tm_struct; in expand_percent_expression() local
81 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()