Lines Matching defs:tv
364 struct timeval tv;
366 tv.tv_sec = ld->ld_timelimit;
370 ld->ld_timelimit ? (void *) &tv : NULL,
452 struct timeval tv;
470 tv.tv_sec = 0;
471 tv.tv_usec = 100000; /* 1/10 of a second */
474 *err = ldap_result( ld, msgid, 1, &tv, &tmpres );
530 struct timeval *tv;
532 tv = (struct timeval *)tvparam;
534 if ( tv->tv_sec != 0 ) {
535 tv->tv_usec = tv->tv_sec * 1000000; /* sec => micro sec */
536 tv->tv_sec = 0;
538 tv->tv_usec -= 100000; /* 1/10 of a second */
540 return( tv->tv_usec <= 0 ? 1 : 0 );