Searched refs:tv (Results 226 - 250 of 514) sorted by relevance

1234567891011>>

/macosx-10.10.1/cups-408/cups/backend/
H A Dusb-darwin.c342 tv; /* Time value */ local
576 tv.tv_sec = 0;
577 tv.tv_usec = 100000; /* 100ms */
578 timeout = &tv;
582 tv.tv_sec = 0;
583 tv.tv_usec = 0;
584 timeout = &tv;
791 gettimeofday(&tv, NULL);
792 cond_timeout.tv_sec = tv.tv_sec + WAIT_SIDE_DELAY;
793 cond_timeout.tv_nsec = tv
2239 struct timeval tv; /* Time value */ local
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Darc4random.c102 struct timeval tv; member in struct:__anon2719
137 (void)gettimeofday(&rdat.tv, NULL);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dutil-int.c269 struct timeval tv; local
276 gettimeofday( &tv, NULL );
277 t = tv.tv_sec;
279 if ( tv.tv_sec < prevTv.tv_sec
280 || ( tv.tv_sec == prevTv.tv_sec && tv.tv_usec <= prevTv.tv_usec )) {
284 prevTv = tv;
297 ltm->tm_usec = tv.tv_usec;
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A DRTADVSocket.c678 struct timeval tv; local
683 tv.tv_sec = 1; /* close it after 1 second of non-use */
684 tv.tv_usec = 0;
685 timer_set_relative(S_globals->timer_callout, tv,
808 struct timeval tv; local
838 tv.tv_sec = RTR_SOLICITATION_INTERVAL;
839 tv.tv_usec = random_range(0, USECS_PER_SEC - 1);
840 timer_set_relative(rtadv->timer, tv,
/macosx-10.10.1/bootp-298/bootpd.tproj/
H A DAFPUsers.c503 struct timeval tv; local
505 gettimeofday(&tv, 0);
509 timeval_subtract(tv, tvp, &result);
511 (int)tv.tv_sec,
512 (int)tv.tv_usec,
518 (int)tv.tv_sec, (int)tv.tv_usec, 0, 0, msg);
519 tvp = tv;
/macosx-10.10.1/bootp-298/bootplib/
H A DNICache.c72 struct timeval tv; local
74 gettimeofday(&tv, 0);
78 timeval_subtract(tv, tvp, &result);
80 (int)tv.tv_sec, (int)tv.tv_usec,
85 (int)tv.tv_sec, (int)tv.tv_usec, 0, 0, msg);
86 tvp = tv;
/macosx-10.10.1/libpcap-48/libpcap/
H A Dpcap-enet.c59 static struct timeval tv = { 0 };
99 (*printit)(buf.hdr.packet, &tv, cc, caplen);
/macosx-10.10.1/ntp-92/libntp/
H A Dadjtime.c227 msgp->msgb.tv = *delta;
242 *olddelta = msgp->msgb.tv;
/macosx-10.10.1/ntp-92/ntpd/
H A Drefclock_zyfer.c295 ppsev.tv.tv_sec += (u_int32) JAN_1970;
296 TVTOTS(&ppsev.tv,&up->tstamp);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/doc/
H A Ddoc_auto.tcl99 proc ::sak::doc::auto::saveTableOfContents {tv nv cv av mv} {
100 upvar 1 $tv title $nv name $cv cat $av apps $mv mods
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/support/devel/sak/doc/
H A Ddoc_auto.tcl99 proc ::sak::doc::auto::saveTableOfContents {tv nv cv av mv} {
100 upvar 1 $tv title $nv name $cv cat $av apps $mv mods
/macosx-10.10.1/vim-55/src/proto/
H A Dedit.pro16 int ins_compl_add_tv __ARGS((typval_T *tv, int dir));
/macosx-10.10.1/NFS-82/nfsd/
H A Dnfsd.c115 struct timeval tv; local
135 tv.tv_sec = 3600;
136 tv.tv_usec = 0;
138 if (select(maxlistensock+1, ((maxlistensock < 0) ? NULL : &ready), NULL, NULL, &tv) < 0) {
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/clients/tools/
H A Dldapdelete.c261 struct timeval tv; local
267 tv.tv_sec = 0;
268 tv.tv_usec = 100000;
270 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
H A Dldappasswd.c313 struct timeval tv; local
319 tv.tv_sec = 0;
320 tv.tv_usec = 100000;
322 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dextended.c197 struct timeval tv = { -1, 0 }; local
198 if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
324 struct timeval tv = { -1, 0 }; local
325 if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
/macosx-10.10.1/OpenSSL098-52/src/fips/
H A DMakefile20 FIPS_TVOK= $$HOME/fips/tv.ok
/macosx-10.10.1/bind9-45.101/bind9/contrib/zkt/
H A Dlog.c386 struct timeval tv; local
411 gettimeofday (&tv, NULL);
412 t = localtime ((time_t *) &tv.tv_sec);
416 t->tm_hour, t->tm_min, t->tm_sec, tv.tv_usec / 1000);
/macosx-10.10.1/file_cmds-242/compress/
H A Dcompress.c383 static struct timeval tv[2]; local
387 TIMESPEC_TO_TIMEVAL(&tv[0], &fs->st_atimespec);
388 TIMESPEC_TO_TIMEVAL(&tv[1], &fs->st_mtimespec);
389 if (utimes(name, tv))
/macosx-10.10.1/ntp-92/util/
H A Dtg.c257 struct timeval tv; /* system clock at startup */ local
352 gettimeofday(&tv, NULL);
353 tm = gmtime(&tv.tv_sec);
365 delay(SECOND - tv.tv_usec * 8 / 1000);
/macosx-10.10.1/vim-55/runtime/tools/
H A Dxcmdsrv_client.c221 struct timeval tv;
223 tv.tv_sec = 0;
224 tv.tv_usec = SEND_MSEC_POLL * 1000;
227 if (select(ConnectionNumber(dpy) + 1, &fds, NULL, NULL, &tv) < 0)
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Dtcp_cc.c204 struct timespec tv; local
208 nanotime(&tv);
210 dbg_state.ccd_tsns = (tv.tv_sec * 1000000000) + tv.tv_nsec;
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/apple/
H A Dlmbench_select_tcp.c602 static struct timeval tv; local
608 tv.tv_sec = 0;
609 tv.tv_usec = 0;
616 select(ts->num, 0, &nosave, 0, &tv);
/macosx-10.10.1/Heimdal-398.1.2/kdc/
H A Dprocess.c42 krb5_kdc_update_time(struct timeval *tv) argument
44 if (tv == NULL)
47 _kdc_now = *tv;
/macosx-10.10.1/ntp-92/include/
H A Dtimepps-Solaris.h460 struct timeval tv; member in struct:ppsclockev
505 infobuf.assert_timestamp.tv_sec = ev.tv.tv_sec;
506 infobuf.assert_timestamp.tv_nsec = ev.tv.tv_usec * 1000;

Completed in 378 milliseconds

1234567891011>>