Home | History | Annotate | Download | only in time

Lines Matching refs:SysTime

32 // Define a system-specific SysTime that wraps either to a time_t or
36 typedef time64_t SysTime;
38 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) {
45 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) {
53 typedef time_t SysTime;
55 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) {
62 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) {
168 SysTime seconds; // Seconds since epoch.
219 SysTime seconds;
273 // On Android, SysTime is int64, special care must be taken to avoid
275 const int64 min_seconds = (sizeof(SysTime) < sizeof(int64))
276 ? std::numeric_limits<SysTime>::min()
278 const int64 max_seconds = (sizeof(SysTime) < sizeof(int64))
279 ? std::numeric_limits<SysTime>::max()