Lines Matching refs:gtime
94 struct tm ltime, gtime;
101 (void) memcpy((void *)>ime, (void *)gmtime(&secs), sizeof (gtime));
108 gsecs = tm_to_secs(>ime);
475 struct tm gtime;
477 (void) memcpy((void *) & gtime, (void *)gmtime(&clock), sizeof (gtime));
479 (void) sprintf(buf, "%4d", gtime.tm_year + 1900);
480 (void) sprintf(buf + 4, "%.2d", gtime.tm_mon + 1);
481 (void) sprintf(buf + 6, "%.2d", gtime.tm_mday);
482 (void) sprintf(buf + 8, "%.2d", gtime.tm_hour);
483 (void) sprintf(buf + 10, "%.2d", gtime.tm_min);
484 (void) sprintf(buf + 12, "%.2d", gtime.tm_sec);