Home | History | Annotate | Download | only in mongoose

Lines Matching refs:ptime

933 static time_t time(time_t *ptime) {
942 if (ptime != NULL) {
943 *ptime = t;
949 static struct tm *localtime(const time_t *ptime, struct tm *ptm) {
950 int64_t t = ((int64_t) *ptime) * RATE_DIFF + EPOCH_DIFF;
976 static struct tm *gmtime(const time_t *ptime, struct tm *ptm) {
978 return localtime(ptime, ptm);