/src/sys/arch/ia64/stand/common/ |
boot.c | 164 time_t when, otime, ntime; local in function:autoboot 193 otime = time(NULL); 194 when = otime + timeout; /* when to boot */ 212 if (ntime != otime) { 216 otime = ntime;
|
/src/usr.sbin/timed/timed/ |
measure.c | 153 uint32_t otime; local in function:measure 156 otime = (tcur.tv_sec % SECDAY) * 1000 158 oicp.icmp_otime = htonl(otime);
|
slave.c | 68 struct timeval otime; local in function:slave 224 (void)gettimeofday(&otime, 0); 225 if (adjusttime < otime.tv_sec) 226 looptime -= (looptime-otime.tv_sec)/2 + 1; 247 (void)gettimeofday(&otime, 0); 248 adj_msg_time(msg,&otime); 267 timersub(&msg->tsp_time, &otime, &ntime); 302 looptime = ntime.tv_sec + (looptime-otime.tv_sec)/2-1; 628 struct timeval otime; local in function:schgdate 641 (void)gettimeofday(&otime, 0) [all...] |
master.c | 349 struct timeval otime, ntime, tmptv; local in function:mchgdate 358 (void)gettimeofday(&otime, 0); 359 adj_msg_time(msg,&otime); 361 timersub(&msg->tsp_time, &otime, &ntime);
|
/src/usr.bin/mail/ |
format.c | 754 time_t otime; local in function:dateof 764 if ((otime = timegm(tm)) == (time_t)-1 || 765 localtime_r(&otime, tm) == NULL) {
|