Searched defs:timestruct (Results 1 - 3 of 3) sorted by relevance

/external/libchrome/base/time/
H A Dtime_posix.cc46 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) { argument
49 return mktime64(timestruct);
51 return timegm64(timestruct);
54 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) { argument
57 localtime64_r(&t, timestruct);
59 gmtime64_r(&t, timestruct);
65 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) { argument
68 return mktime(timestruct);
70 return timegm(timestruct);
73 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, boo argument
200 struct tm timestruct; local
215 struct tm timestruct; local
[all...]
/external/libweave/third_party/chromium/base/time/
H A Dtime_posix.cc30 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) { argument
32 return mktime64(timestruct);
34 return timegm64(timestruct);
37 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) { argument
39 localtime64_r(&t, timestruct);
41 gmtime64_r(&t, timestruct);
47 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) {
49 return mktime(timestruct);
51 return timegm(timestruct);
54 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, boo
180 struct tm timestruct; local
195 struct tm timestruct; local
[all...]
/external/google-breakpad/src/processor/
H A Dminidump.cc371 struct tm timestruct; local
373 gmtime_s(&timestruct, &tt);
375 gmtime_r(&tt, &timestruct);
379 int rv = strftime(timestr, 20, "%Y-%m-%d %H:%M:%S", &timestruct);

Completed in 166 milliseconds