Searched refs:tv (Results 76 - 100 of 187) sorted by relevance

12345678

/illumos-gate/usr/src/cmd/ypcmd/
H A Drpc_bootstrap.c274 struct timeval tv; /* Timeout for our rpcb call */ local
295 tv.tv_sec = 10;
296 tv.tv_usec = 0;
303 xdr_wrapstring, (char *)&ua, tv);
/illumos-gate/usr/src/uts/common/io/
H A Dsundlpi.c356 timestruc_t tv; local
369 tv.tv_sec = 15;
370 tv.tv_nsec = 0;
373 &tv);
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_ctf.c660 type_visit_t tv; local
662 tv.tv_cb = tvp->tv_cb;
663 tv.tv_arg = tvp->tv_arg;
664 tv.tv_fp = basep->mci_fp;
666 tv.tv_base_offset = off;
667 tv.tv_base_depth = depth;
668 tv.tv_min_depth = 1; /* depth = 0 has already been done */
671 type_cb, &tv);
680 type_visit_t tv; local
683 tv
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Dpppoec.c1402 struct timeval tv, tvnow; local
1449 tv = tvnow;
1450 if ((tv.tv_sec -= tvstart.tv_sec) < 0) {
1452 tv.tv_sec = 1;
1453 tv.tv_usec = 0;
1454 } else if ((tv.tv_usec -= tvstart.tv_usec) < 0) {
1455 tv.tv_usec += 1000000;
1456 if (--tv.tv_sec < 0)
1457 tv.tv_sec = 0;
1459 psm.poesm_timer -= tv
[all...]
/illumos-gate/usr/src/lib/libadutils/common/
H A Dadutils.c1555 struct timeval tv; local
1557 tv.tv_sec = ADUTILS_SEARCH_TIMEOUT;
1558 tv.tv_usec = 0;
1563 &tv)) != 0)
1588 struct timeval tv; local
1615 tv.tv_sec = ADUTILS_SEARCH_TIMEOUT;
1616 tv.tv_usec = 0;
1619 if (get_adobject_batch(state->qadh, &tv) != 0)
1666 (void) memset(&tv, 0, sizeof (tv));
[all...]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dparseaddr.c1922 ** tv -- token vector.
1955 buildaddr(tv, a, flags, e)
1956 register char **tv;
1973 sm_dprintf("buildaddr, flags=%x, tv=", flags);
1974 printav(sm_debug_file(), tv); local
1987 if (*tv == NULL || (**tv & 0377) != CANONNET)
2011 mname = *++tv;
2015 if (*++tv != NULL && (**tv
[all...]
H A Dsfsasl.c589 struct timeval tv; local
611 tv.tv_sec = left;
612 tv.tv_usec = 0;
646 &tv);
662 &tv);
/illumos-gate/usr/src/uts/common/sys/
H A Dtermios.h372 struct timeval tv; member in struct:ppsclockev
378 struct timeval32 tv; member in struct:ppsclockev32
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ping/
H A Dping_aux6.c272 struct timeval tv; local
315 ping_gettime(msg, &tv);
519 (void) tvsub(&tv, tp);
520 triptime = (int64_t)tv.tv_sec * MICROSEC + tv.tv_usec;
821 (void) tvsub(&tv, tp);
822 triptime = (int64_t)tv.tv_sec * MICROSEC + tv.tv_usec;
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Ddocmd.c524 struct timeval tv[2]; local
550 (void) gettimeofday(&tv[0], (struct timezone *)NULL);
551 tv[1] = tv[0];
552 (void) utimes(stamp, tv);
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-thread.h255 struct timeval tv;
256 if (gettimeofday(&tv,0) < 0) { tv.tv_sec = tv.tv_usec = 0; }
257 return tv;
251 struct timeval tv; local
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dos-ip.c1151 nsldapi_tv2ms( struct timeval *tv )
1153 if ( tv == NULL ) {
1157 return( tv->tv_sec * 1000 + tv->tv_usec / 1000 );
1542 struct timeval tv, *tvp; local
1581 tv.tv_sec = timeout / 1000;
1582 tv.tv_usec = 1000 * ( timeout - tv.tv_sec * 1000 );
1583 tvp = &tv;
H A Dresult.c275 struct timeval tv, *tvp; local
337 tv = *timeout;
338 tvp = &tv;
341 tv_time = ((hrtime_t)tv.tv_sec * NANOSEC +
342 (hrtime_t)tv.tv_usec * (NANOSEC / MICROSEC));
467 if (( tv.tv_sec -= ( tmp_time - start_time )) <= 0 ) {
476 tv.tv_sec = tv_time / NANOSEC;
477 tv.tv_usec = (tv_time % NANOSEC) / (NANOSEC / MICROSEC);
480 tv.tv_sec, 0, 0 );
/illumos-gate/usr/src/lib/libpcidb/common/
H A Dpcidb.c354 pcidb_vendor_t *v, *tv; local
376 tv = v;
378 free(tv);
/illumos-gate/usr/src/lib/nsswitch/mdns/common/
H A Dmdns_common.c84 struct timeval tv; local
103 tv.tv_sec = NSSMDNS_MAXQRYTMO;
104 tv.tv_usec = 0;
107 ret = select(sockfd + 1, &readfds, NULL, NULL, &tv);
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dnbns_rq.c482 struct timeval tv; local
492 tv.tv_sec = rqp->nr_nbd->nb_timo;
493 tv.tv_usec = 0;
495 n = select(s + 1, &rd, &wr, &ex, &tv);
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dlogging.c277 struct timeval tv; local
311 if (gettimeofday(&tv, NULL) < 0) {
314 tt = tv.tv_sec;
325 (long)tv.tv_usec/1000);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dcrypt.c790 struct timeval tv; local
792 (void) gettimeofday(&tv, (void *) 0);
793 srand48(tv.tv_sec ^ tv.tv_usec);
/illumos-gate/usr/src/lib/auditd_plugins/binfile/
H A Dbinfile.c403 struct timeval tv; /* time now */ local
408 (void) gettimeofday(&tv, (struct timezone *)0);
414 adr_int64(&adr, (int64_t *)& tv, 2);
418 adr_int32(&adr, (int32_t *)& tv, 2);
/illumos-gate/usr/src/cmd/fs.d/nfs/rquotad/
H A Drpc.rquotad.c318 struct timeval tv; local
385 gettimeofday(&tv, NULL);
386 gqr.gqrslt.rq_btimeleft = dqblk.dqb_btimelimit - tv.tv_sec;
387 gqr.gqrslt.rq_ftimeleft = dqblk.dqb_ftimelimit - tv.tv_sec;
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_io.c204 } tv; local
218 tv.sec = (uint32_t)time->tv_sec;
219 tv.usec = (uint32_t)time->tv_nsec;
220 adr_int32(hadrp, (int32_t *)&tv, 2);
/illumos-gate/usr/src/lib/libast/
H A DMakefile137 tv.h \
/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dtmx.h93 #include <tv.h>
/illumos-gate/usr/src/lib/libast/amd64/src/lib/libast/
H A Dtmx.h72 #include <tv.h>
/illumos-gate/usr/src/lib/libast/i386/include/ast/
H A Dtmx.h93 #include <tv.h>

Completed in 3526 milliseconds

12345678