Searched refs:tv_sec (Results 226 - 250 of 781) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dselect.c88 tsp->tv_sec < 0) {
305 ts.tv_sec = tv->tv_sec;
H A Dselect_large_fdset.c105 tsp->tv_sec < 0) {
357 ts.tv_sec = tv->tv_sec;
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Deventlog.c188 Timeout.tv_sec = ADM_TIMEOUT;
254 Timeout.tv_sec = ADM_TIMEOUT;
292 Timeout.tv_sec = ADM_TIMEOUT;
/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dlibmilter.h160 timeout.tv_sec = now.tv_sec + to; \
176 # define MI_MS(timeout) (((timeout)->tv_sec * 1000) + (timeout)->tv_usec)
/illumos-gate/usr/src/uts/common/rpc/sec/
H A Dauthdesubr.c336 timout.tv_sec = 60;
369 timep->tv_sec = thetime;
370 RPCLOG(8, "rtime: timep->tv_sec = %lx\n", timep->tv_sec);
/illumos-gate/usr/src/uts/sun4u/io/
H A Dtodbq4802.c187 ts.tv_sec = tod_to_utc(tod);
249 todinfo_t tod = utc_to_tod(ts.tv_sec);
324 tod = utc_to_tod(ts.tv_sec);
H A Dtodmostek.c148 ts.tv_sec = tod_to_utc(tod);
161 todinfo_t tod = utc_to_tod(ts.tv_sec);
226 tod = utc_to_tod(ts.tv_sec);
H A Dtodm5819.c171 ts.tv_sec = tod_to_utc(rtc_to_tod(&rtc));
246 todinfo_t tod = utc_to_tod(ts.tv_sec);
341 tod = utc_to_tod(ts.tv_sec);
H A Dtodm5819p_rmc.c186 ts.tv_sec = tod_to_utc(rtc_to_tod(&rtc));
250 todinfo_t tod = utc_to_tod(ts.tv_sec);
369 tod = utc_to_tod(ts.tv_sec);
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dufn.c366 tv.tv_sec = ld->ld_timelimit;
470 tv.tv_sec = 0;
534 if ( tv->tv_sec != 0 ) {
535 tv->tv_usec = tv->tv_sec * 1000000; /* sec => micro sec */
536 tv->tv_sec = 0;
/illumos-gate/usr/src/cmd/ptools/ptree/
H A Dptree.c390 if (cp->start.tv_sec < sp->start.tv_sec)
392 if (cp->start.tv_sec == sp->start.tv_sec &&
440 pp->start.tv_sec = st.st_ctime;
/illumos-gate/usr/src/cmd/fs.d/ufs/repquota/
H A Drepquota.c296 (void) time(&(tv.tv_sec));
307 else if (dqp->dqb_btimelimit > tv.tv_sec)
309 (long)(dqp->dqb_btimelimit - tv.tv_sec));
318 else if (dqp->dqb_ftimelimit > tv.tv_sec)
320 (long)(dqp->dqb_ftimelimit - tv.tv_sec));
/illumos-gate/usr/src/uts/common/syscall/
H A Dlwpsys.c512 rmtime.tv_sec = rmtime.tv_nsec = 0;
515 if ((now.tv_sec < rqtime.tv_sec) ||
516 ((now.tv_sec == rqtime.tv_sec) &&
/illumos-gate/usr/src/lib/nsswitch/mdns/common/
H A Dmdns_common.c103 tv.tv_sec = NSSMDNS_MAXQRYTMO;
569 ptv->tv_sec = *(time_t *)(scf_simple_prop_next_time(sprop,
589 if ((statetimestamp.tv_sec == 0) && (statetimestamp.tv_usec == 0)) {
593 } else if ((be->conftimestamp.tv_sec == statetimestamp.tv_sec) &&
600 be->conftimestamp.tv_sec = statetimestamp.tv_sec;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Dinput.c179 ifp->int_act_time = now.tv_sec;
256 ifp->int_act_time = now.tv_sec;
313 (ulong_t)ap->end < (ulong_t)clk.tv_sec) {
623 ifp->int_act_time = now.tv_sec;
741 new.rts_time = now.tv_sec;
942 new.rts_time = now.tv_sec;
1323 php->ph_heard = now.tv_sec;
1434 php->ph_heard = now.tv_sec;
1443 (ulong_t)ap->start > (ulong_t)clk.tv_sec+DAY ||
1444 (ulong_t)ap->end+DAY < (ulong_t)clk.tv_sec)
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_table.cc625 hi = lo = ttl = maxTimeT - now.tv_sec;
632 mapping.expire[where] = now.tv_sec + lo;
634 srand48(now.tv_sec);
635 mapping.expire[where] = now.tv_sec +
643 mapping.expire[where] = now.tv_sec + ttl;
856 time_t enumXp = now.tv_sec + mapping.initTtlHi;
859 srand48(now.tv_sec);
865 now.tv_sec +
869 now.tv_sec +
898 else if (mapping.expire == 0 || mapping.expire[loc] >= now.tv_sec)
[all...]
/illumos-gate/usr/src/lib/libc/port/aio/
H A Dposix_aio.c371 if (timo->tv_sec < 0 || timo->tv_nsec < 0 ||
377 if (timo->tv_sec > 0 || timo->tv_nsec > 0) {
479 hrtend = hrtstart + (hrtime_t)timo->tv_sec * (hrtime_t)NANOSEC +
484 twait.tv_sec = hrtres / (hrtime_t)NANOSEC;
553 wait->tv_sec = hrtres / (hrtime_t)NANOSEC;
592 wait->tv_sec = hrtres / (hrtime_t)NANOSEC;
961 if (utimo && utimo->tv_sec == 0 && utimo->tv_nsec == 0) {
1256 if (utimo->tv_sec < 0 || utimo->tv_nsec < 0 ||
1261 if (utimo->tv_sec > 0 || utimo->tv_nsec > 0) {
1263 end->tv_sec
[all...]
/illumos-gate/usr/src/cmd/truss/
H A Dmain.c1550 ((hrtime_t)Cp->basetime.tv_sec * NANOSEC +
1554 basedate->tv_sec -= (time_t)(delta / NANOSEC);
1557 basedate->tv_sec--;
1561 ptm = localtime(&basedate->tv_sec);
1568 basedate->tv_sec, basedate->tv_usec / 100,
1785 Cp->usrtotal.tv_sec += ncp->usrtotal.tv_sec;
1789 Cp->usrtotal.tv_sec++;
1814 scp->stime.tv_sec += nscp->stime.tv_sec;
[all...]
/illumos-gate/usr/src/common/fs/
H A Dhsfs.c624 stp->st_atim.tv_sec = ip->i_atime.tv_sec;
626 stp->st_mtim.tv_sec = ip->i_mtime.tv_sec;
628 stp->st_ctim.tv_sec = ip->i_ctime.tv_sec;
H A Dufsops.c725 stp->st_atim.tv_sec = ip->i_atime.tv_sec;
727 stp->st_mtim.tv_sec = ip->i_mtime.tv_sec;
729 stp->st_ctim.tv_sec = ip->i_ctime.tv_sec;
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/grover/envd/
H A Dpiclenvd.c562 if ((ct.tv_sec - sensorp->warning_tstamp) >=
568 sensorp->warning_tstamp = ct.tv_sec;
575 sensorp->shutdown_tstamp = ct.tv_sec;
582 if ((ct.tv_sec - sensorp->shutdown_tstamp) >=
647 to.tv_sec = ct.tv_sec + sensor_poll_interval;
/illumos-gate/usr/src/cmd/ypcmd/
H A Dypserv_resolv.c152 tv.tv_sec = 3; tv.tv_usec = 0;
186 tv.tv_sec = 10; tv.tv_usec = 0;
385 tv.tv_sec = 10; tv.tv_usec = 0;
/illumos-gate/usr/src/cmd/touch/
H A Dtouch.c383 ts->tv_sec = when;
444 ts->tv_sec = when;
487 ts->tv_sec = when;
/illumos-gate/usr/src/uts/common/sys/
H A Dstat.h333 #define st_atime st_atim.tv_sec
334 #define st_mtime st_mtim.tv_sec
335 #define st_ctime st_ctim.tv_sec
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_negotiate.c444 negprot->ni_servertime.tv_sec = gethrestime_sec();
484 negprot->ni_servertime.tv_sec, /* server date/time */
509 negprot->ni_servertime.tv_sec, /* server date/time */

Completed in 164 milliseconds

1234567891011>>