Searched defs:timestruct (Results 1 - 3 of 3) sorted by relevance
/external/libchrome/base/time/ |
H A D | time_posix.cc | 46 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 D | time_posix.cc | 30 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 D | minidump.cc | 371 struct tm timestruct; local 373 gmtime_s(×truct, &tt); 375 gmtime_r(&tt, ×truct); 379 int rv = strftime(timestr, 20, "%Y-%m-%d %H:%M:%S", ×truct);
|
Completed in 166 milliseconds