Searched refs:tv (Results 176 - 200 of 514) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Duuid.c334 struct timeval tv;
354 gettimeofday( &tv, 0 );
356 time( &tv.tv_sec );
357 tv.tv_usec = 0;
360 tl = mul64ll(tv.tv_sec, 10000000UL);
361 set_add64l(tl, tv.tv_usec * 10UL);
H A Dmeter.c81 struct timeval tv; local
84 gettimeofday( &tv, NULL );
85 *now = ((double) tv.tv_sec) + (((double) tv.tv_usec) / 1000000.0);
/macosx-10.10.1/file_cmds-242/mtree/
H A Dcompare.c83 struct timeval tv[2]; local
198 tv[0].tv_sec = s->st_mtimespec.tv_sec;
199 tv[0].tv_usec = s->st_mtimespec.tv_nsec / 1000;
200 tv[1] = tv[0];
201 if (utimes(p->fts_accpath, tv))
/macosx-10.10.1/apr-32/apr/apr/poll/unix/
H A Dkqueue.c250 struct timespec tv, *tvptr; local
258 tv.tv_sec = (long) apr_time_sec(timeout);
259 tv.tv_nsec = (long) apr_time_usec(timeout) * 1000;
260 tvptr = &tv;
431 struct timespec tv, *tvptr; local
438 tv.tv_sec = (long) apr_time_sec(timeout);
439 tv.tv_nsec = (long) apr_time_usec(timeout) * 1000;
440 tvptr = &tv;
H A Dselect.c39 struct timeval tv, *tvptr; local
63 tv.tv_sec = (long) apr_time_sec(timeout);
64 tv.tv_usec = (long) apr_time_usec(timeout);
65 tvptr = &tv;
346 struct timeval tv, *tvptr; local
369 tv.tv_sec = (long) apr_time_sec(timeout);
370 tv.tv_usec = (long) apr_time_usec(timeout);
371 tvptr = &tv;
/macosx-10.10.1/ntp-92/sntp/
H A Dutilities.c143 /* Converts a struct tv to a date string
147 struct timeval *tv
169 (int)tv->tv_usec);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-CoreData/Examples/DragApp/
H A DDragSupportDataSource.py42 def tableView_writeRowsWithIndexes_toPasteboard_(self, tv, rowIndexes, pboard):
45 infoForBinding = tv.infoForBinding_(NSContentBinding)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-CoreData/Examples/DragApp/
H A DDragSupportDataSource.py42 def tableView_writeRowsWithIndexes_toPasteboard_(self, tv, rowIndexes, pboard):
45 infoForBinding = tv.infoForBinding_(NSContentBinding)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-CoreData-2.5.1/Examples/DragApp/
H A DDragSupportDataSource.py42 def tableView_writeRowsWithIndexes_toPasteboard_(self, tv, rowIndexes, pboard):
45 infoForBinding = tv.infoForBinding_(NSContentBinding)
/macosx-10.10.1/remote_cmds-47/ypxfr.tproj/
H A Dypxfr.c390 struct timeval tv; local
396 tv.tv_sec = 10;
397 tv.tv_usec = 0;
402 (xdrproc_t)xdr_void, 0, (xdrproc_t)xdr_void, 0, tv);
417 struct timeval tv; local
421 tv.tv_sec = 10;
422 tv.tv_usec = 0;
430 (xdrproc_t)xdr_ypresp_xfr, &resp, (xdrproc_t)xdr_void, 0, tv);
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dselect.c181 struct timeval tv = {0, 0}; local
191 if (select(maxfd, my_iset, my_oset, NULL, &tv) != target) {
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dprototypes.h93 extern int gettimeofday _((struct timeval *tv, struct timezone *tz));
118 extern int gettimeofday _((struct timeval *tv, struct timezone *tz));
/macosx-10.10.1/cups-408/cups/backend/
H A Dusb-libusb.c197 tv; /* Time value */ local
370 tv.tv_sec = 0;
371 tv.tv_usec = 100000; /* 100ms */
372 timeout = &tv;
376 tv.tv_sec = 0;
377 tv.tv_usec = 0;
378 timeout = &tv;
571 gettimeofday(&tv, NULL);
572 cond_timeout.tv_sec = tv.tv_sec + WAIT_SIDE_DELAY;
573 cond_timeout.tv_nsec = tv
1894 struct timeval tv; /* Time value */ local
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/dbus/
H A Ddbus_service.c119 struct timeval tv; member in struct:dbto_s
580 gettimeofday(&(to->tv),0L);
583 to->tv.tv_sec = 0 ;
584 to->tv.tv_usec = 0 ;
638 gettimeofday(&(to->tv),0L);
641 to->tv.tv_sec = 0 ;
642 to->tv.tv_usec = 0 ;
657 struct timeval tv; local
662 gettimeofday(&tv,0L);
671 then = ((float)to->tv
[all...]
/macosx-10.10.1/ppp-786.1.1/Authenticators/Radius/
H A Dradlib.c531 * 0 The application should select on *fd with a timeout of tv before
538 struct timeval *tv)
608 tv->tv_sec = h->servers[h->srv].timeout;
609 tv->tv_usec = 0;
707 rad_init_send_request(struct rad_handle *h, int *fd, struct timeval *tv) argument
781 return rad_continue_send_request(h, 0, fd, tv);
924 struct timeval tv; local
928 n = rad_init_send_request(h, &fd, &tv);
934 timeradd(&tv, &timelimit, &timelimit);
942 n = select(fd + 1, &readfds, NULL, NULL, &tv);
537 rad_continue_send_request(struct rad_handle *h, int selected, int *fd, struct timeval *tv) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/os/
H A Ddebug_private.c151 struct timeval tv; local
152 gettimeofday(&tv, NULL);
159 tv.tv_sec, tv.tv_usec);
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Drandom.c327 struct timeval tv; local
329 gettimeofday(&tv, NULL);
330 srandom((getpid() << 16) ^ tv.tv_sec ^ tv.tv_usec);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/clients/tools/
H A Dldapcompare.c294 struct timeval tv; local
296 tv.tv_sec = 0;
297 tv.tv_usec = 100000;
303 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
H A Dldapexop.c213 struct timeval tv; local
219 tv.tv_sec = 0;
220 tv.tv_usec = 100000;
222 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
H A Dldapmodrdn.c270 struct timeval tv = { 0, 0 }; local
276 tv.tv_sec = 0;
277 tv.tv_usec = 100000;
279 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 Dsearch.c136 struct timeval tv; local
164 tv.tv_sec = op->ors_tlimit;
165 tv.tv_usec = 0;
169 LDAP_BACK_TV_SET( &tv );
236 tv.tv_sec ? &tv : NULL,
285 if ( tv.tv_sec == 0 || tv.tv_sec > li->li_timeout[ SLAP_OP_SEARCH ] ) {
286 tv.tv_sec = li->li_timeout[ SLAP_OP_SEARCH ];
287 tv
[all...]
/macosx-10.10.1/OpenSSL098-52/src/fips/rand/
H A Dfips_randtest.c212 static void run_test(unsigned char *key, int keylen, AES_PRNG_MCT *tv) argument
219 FIPS_rand_seed(tv->V, 16);
220 memcpy(dt, tv->DT, 16);
234 compare(buf,tv->R, 16);
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dfips_randtest.c212 static void run_test(unsigned char *key, int keylen, AES_PRNG_MCT *tv) argument
219 FIPS_rand_seed(tv->V, 16);
220 memcpy(dt, tv->DT, 16);
234 compare(buf,tv->R, 16);
/macosx-10.10.1/bootp-298/bootplib/
H A Dhostlist.h45 struct timeval tv; /* time-in */ member in struct:hosts
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dselect.h94 fd_set* excepts, struct timeval* tv);

Completed in 342 milliseconds

1234567891011>>