Home | History | Annotate | Download | only in time

Lines Matching refs:SysTime

40 // Define a system-specific SysTime that wraps either to a time_t or
44 typedef time64_t SysTime;
46 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) {
54 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) {
63 typedef time_t SysTime;
65 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) {
73 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) {
181 SysTime seconds; // Seconds since epoch.
231 SysTime seconds;
285 // On Android, SysTime is int64_t, special care must be taken to avoid
287 const int64_t min_seconds = (sizeof(SysTime) < sizeof(int64_t))
288 ? std::numeric_limits<SysTime>::min()
290 const int64_t max_seconds = (sizeof(SysTime) < sizeof(int64_t))
291 ? std::numeric_limits<SysTime>::max()