Home | History | Annotate | Download | only in nspr

Lines Matching defs:secs

87 static void localtime_r(const time_t* secs, struct tm* time) {
88 (void) localtime_s(time, secs);
1169 time_t secs;
1188 /* month, day, hours, mins and secs are always non-negative
1222 secs = (time_t) -1;
1224 secs = mktime(&localTime);
1227 secs = mktime(&localTime);
1229 if (secs != (time_t) -1)
1231 *result_imploded = (PRInt64)secs * PR_USEC_PER_SEC;
1240 secs = 86400;
1241 localtime_r(&secs, &localTime);