Searched defs:then (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/cmd/backup/dump/
H A Dunctime.c51 struct tm then; local
58 then.tm_mon = lookup(&dbuf[E_MONTH]);
59 if (then.tm_mon < 0) {
62 then.tm_mday = atoi(&dbuf[E_DAY]);
63 then.tm_hour = atoi(&dbuf[E_HOUR]);
64 then.tm_min = atoi(&dbuf[E_MINUTE]);
65 then.tm_sec = atoi(&dbuf[E_SECOND]);
66 then.tm_year = atoi(&dbuf[E_YEAR]) - 1900;
67 return (emitl(&then));
/illumos-gate/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_dtime.c144 struct tm then; local
150 (void) memset(&then, 0, sizeof (then));
154 if ((then.tm_mon = lookup(&dbuf[E_MONTH])) < 0)
157 then.tm_mday = atoi(&dbuf[E_DAY]);
158 then.tm_hour = atoi(&dbuf[E_HOUR]);
159 then.tm_min = atoi(&dbuf[E_MINUTE]);
160 then.tm_sec = atoi(&dbuf[E_SECOND]);
161 then.tm_year = atoi(&dbuf[E_YEAR]) - 1900;
162 then
[all...]
/illumos-gate/usr/src/cmd/sendmail/aux/
H A Dvacation.c294 time_t then; local
296 if (content_size == sizeof (then)) {
297 bcopy(content_ptr, (char *)&then, sizeof (then));
299 ctime(&then));
592 * If the file does not exist, then there is no filter to
676 time_t now, then; local
685 bcopy(data.dptr, (char *)&then, sizeof (then));
686 if (then
[all...]
/illumos-gate/usr/src/cmd/luxadm/
H A Dfcalupdate.c569 hrtime_t now, then; local
572 then = now + s*1000;
575 } while (now < then);
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgetipnodeby.c160 * box. In those cases, we then check which interfaces are up and
300 * of these are true, then there's no need to
310 * buf6 then buf6 is now useless.
687 hrtime_t now, *then; local
697 then = &then4;
702 then = &then6;
718 if (*num == -1 || ((now - *then) >= IFNUM_TIMEOUT)) {
734 *then = now;
790 *then = now;
1038 * AF_INET hostent. If no mapped addrs found, then
[all...]
H A Dnetdir_inet.c310 * HOST_BROADCAST then we ask a tli fd to tell us what
426 * And finally if we specify HOST_BROADCAST then we
763 * with "tcp" and then "udp".
1175 * with "tcp" and then "udp".
1633 * If there's only one address or no addresses to sort, then
1666 static hrtime_t then = 0; /* the last time localinfo was updated */ local
1704 if (localinfo == NULL || ((now - then) > IFINFOTIMEOUT)) {
1709 * Another thread might have updated "then" between
1713 if (localinfo == NULL || ((now - then) > IFINFOTIMEOUT)) {
1721 then
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/blade/bsc/
H A Dpicllom.c444 static time_t then = 0; local
450 if (now == then)
453 then = now;
508 static time_t then = 0; local
514 if (now == then)
517 then = now;
742 * for the handle with which we are presented and then locate its
745 * index value first and then revert to a full search.
793 * if we get here, then we found the right LED.
/illumos-gate/usr/src/cmd/lvm/rpc.mdcommd/
H A Dmdmn_commd_server.c378 time_t now, then; local
393 /* then is the registered time */
394 then =
396 if ((then != 0) && (now > then)) {
808 * then we display the failing process and attempt to terminate
1315 * and then continue, so that the client is set up
1412 * more seconds and then return RPC_FAIL if the message is not complete.
2363 * Until then the calling send_message will be blocked, while we
2872 * If class _is_not_ MD_COMM_ALL_CLASSES, then w
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSDigest.c290 * has to be at lest 32 bit wide, if it's wider, then
1425 mDNSs32 then; local
1472 then = (mDNSs32)NToH32(utc48 + sizeof(mDNSu16));
1478 delta = (now > then) ? now - then : then - now;
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dqueue.c336 ** msync -- if true, then fsync() if SuperSafe interactive mode.
1043 ** being the sig) then the old signal handler (Oldsh) is called
1047 ** have a parent then handle the signal immediately, regardless of
1104 ** being the sig) then the old signal handler (Oldsh) is called to
1108 ** a parent then handle the signal immediately, regardless of
1499 ** If MaxQueueChildren active then test whether the start
1505 ** i.e., this work group might "starve" then.
1636 ** When work isn't directly being done then this process can take a signal
2152 ** the queue is "forced" then lets use 1 runner.
2158 /* No need to have more runners then ther
5374 time_t then = LastQueueTime; local
[all...]
/illumos-gate/usr/src/cmd/svc/svcs/
H A Dsvcs.c704 * If a restarter specific action is available, then restarter_spec
705 * is set to 1. If a restarter specific action is not available, then
767 * If the print flag is set, then print each contract id found.
801 * If fopen fails, then ctid file hasn't been created yet.
873 * If fopen fails with ENOENT then the ctid file hasn't been
979 * group is non-NULL, then we are dealing with a legacy service.
1643 time_t then; local
1666 then = (time_t)tv.tv_sec;
1668 tm = localtime(&then);
1674 if (now - then < 2
[all...]

Completed in 90 milliseconds