OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tm_struct
(Results
1 - 2
of
2
) sorted by null
/external/google-breakpad/src/processor/
logging.cc
59
struct tm
tm_struct
;
local
61
localtime_s(&
tm_struct
, &clock);
63
localtime_r(&clock, &
tm_struct
);
66
strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", &
tm_struct
);
/external/e2fsprogs/e2fsck/
logfile.c
69
struct tm *tm = NULL,
tm_struct
;
local
78
tm = (*flags & FLAG_UTC) ? gmtime_r(&ctx->now, &
tm_struct
) :
79
localtime_r(&ctx->now, &
tm_struct
);
Completed in 52 milliseconds