Home
last modified time | relevance | path

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

/external/google-breakpad/src/tools/mac/crash_report/
Dcrash_report.mm254 struct tm timestruct;
255 gmtime_r(reinterpret_cast<time_t*>(&time_date_stamp), &timestruct);
257 strftime(timestr, 20, "%Y-%m-%d %H:%M:%S", &timestruct);
/external/google-breakpad/src/processor/
Dminidump.cc371 struct tm timestruct; in TimeTToUTCString() local
373 gmtime_s(&timestruct, &tt); in TimeTToUTCString()
375 gmtime_r(&tt, &timestruct); in TimeTToUTCString()
379 int rv = strftime(timestr, 20, "%Y-%m-%d %H:%M:%S", &timestruct); in TimeTToUTCString()