| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | BIO_socket_wait.pod | 15 int BIO_socket_wait(int fd, int for_read, time_t max_time); 17 int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds); 23 else for writing, at most until B<max_time>. 24 It succeeds immediately if B<max_time> == 0 (which means no timeout given). 26 BIO_wait() waits at most until B<max_time> on the given (typically socket-based) 29 It succeeds immediately if B<max_time> == 0 (which means no timeout given).
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/ |
| H A D | SumTimerInfo.py | 20 max_time = 0.0 variable 36 if float(s[6]) > max_time: 37 max_time = float(s[6]) variable
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/statschannel/ |
| H A D | generic.py | 37 def check_expires(expires, min_time, max_time): argument 39 assert expires <= max_time 42 def check_refresh(refresh, min_time, max_time): argument 44 assert refresh <= max_time
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/bio/ |
| H A D | bio_sock.c | 393 int BIO_socket_wait(int fd, int for_read, time_t max_time) in BIO_socket_wait() argument 405 if (max_time == 0) in BIO_socket_wait() 409 if (max_time < now) in BIO_socket_wait() 415 tv.tv_sec = (long)(max_time - now); /* might overflow */ in BIO_socket_wait()
|
| H A D | bio_lib.c | 861 static int bio_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds) in bio_wait() argument 868 if (max_time == 0) /* no timeout */ in bio_wait() 873 int ret = BIO_socket_wait(fd, BIO_should_read(bio), max_time); in bio_wait() 881 sec_diff = (long)(max_time - time(NULL)); /* might overflow */ in bio_wait() 905 int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds) in BIO_wait() argument 907 int rv = bio_wait(bio, max_time, nap_milliseconds); in BIO_wait() 926 time_t max_time = timeout > 0 ? time(NULL) + timeout : 0; in BIO_do_connect_retry() local 969 rv = bio_wait(bio, max_time, nap_milliseconds); in BIO_do_connect_retry()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/http/ |
| H A D | http_client.c | 66 time_t max_time; /* Maximum end time of current transfer, or 0 */ member 266 rctx->max_time = timeout > 0 ? time(NULL) + timeout : 0; in OSSL_HTTP_REQ_CTX_set_expected() 268 rctx->max_time = rctx->max_total_time; in OSSL_HTTP_REQ_CTX_set_expected() 505 static int may_still_retry(time_t max_time, int *ptimeout) in may_still_retry() argument 509 if (max_time != 0) { in may_still_retry() 510 if (max_time < now) { in may_still_retry() 514 time_diff = max_time - now; in may_still_retry() 903 if (BIO_wait(rctx->rbio, rctx->max_time, 100 /* milliseconds */) <= 0) in OSSL_HTTP_REQ_CTX_exchange() 1138 time_t max_time = timeout > 0 ? time(NULL) + timeout : 0; in OSSL_HTTP_get() local 1172 && may_still_retry(max_time, &timeout)) { in OSSL_HTTP_get() [all …]
|
| /netbsd-src/lib/libc/time/ |
| H A D | zic.c | 902 static zic_t const max_time = MAXVAL(zic_t, TIME_T_BITS_IN_FILE); in check_for_signal() 921 intmax_t lo = min_time, hi = max_time; 937 if (*hi_end || hi < lo || max_time < lo || hi < min_time) in timerange_option() 940 hi_time = min(hi, max_time); in timerange_option() 1992 z.z_untiltime < max_time && in getleapdatetime() 1994 zones[nzones - 1].z_untiltime < max_time && in getleapdatetime() 2080 if (dayoff > max_time / SECSPERDAY) { in inleap() 2377 if (hi < max_time) { in writezone() 2548 thismax = max_time; in writezone() 3030 if (hi_time < max_time) in stringzone() 910 static zic_t const max_time = MAXVAL(zic_t, TIME_T_BITS_IN_FILE); global() variable [all...] |
| /netbsd-src/external/ibm-public/postfix/dist/src/util/ |
| H A D | events.c | 662 time_t max_time; in event_drain() local 673 max_time = event_present + time_limit; in event_drain() 674 while (event_present < max_time in event_drain()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | sel-sched.c | 7388 int max_time = 0; in calculate_new_fences() local 7417 max_time = MAX (max_time, FENCE_CYCLE (fence)); in calculate_new_fences() 7421 *ptime = max_time; in calculate_new_fences() 7476 int max_time = 0; in sel_sched_region_2() local 7492 fences = calculate_new_fences (fences, orig_max_seqno, &max_time); in sel_sched_region_2() 7500 sel_print ("Total scheduling time: %d cycles\n", max_time); in sel_sched_region_2()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | sel-sched.cc | 7388 int max_time = 0; in calculate_new_fences() local 7417 max_time = MAX (max_time, FENCE_CYCLE (fence)); in calculate_new_fences() 7421 *ptime = max_time; in calculate_new_fences() 7476 int max_time = 0; in sel_sched_region_2() local 7492 fences = calculate_new_fences (fences, orig_max_seqno, &max_time); in sel_sched_region_2() 7500 sel_print ("Total scheduling time: %d cycles\n", max_time); in sel_sched_region_2()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
| H A D | bio.h.in | 684 int BIO_socket_wait(int fd, int for_read, time_t max_time); 686 int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds);
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
| H A D | Dbe.cc | 1477 hrtime_t max_time = 0; in dbeCalcGroupDuration() local 1492 if (max_time < tot_time) in dbeCalcGroupDuration() 1493 max_time = tot_time; in dbeCalcGroupDuration() 1501 max_time = exp->getLastEvent () - exp->getStartTime (); in dbeCalcGroupDuration() 1503 return max_time; //nanoseconds in dbeCalcGroupDuration()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
| H A D | Dbe.cc | 1477 hrtime_t max_time = 0; in dbeCalcGroupDuration() local 1492 if (max_time < tot_time) in dbeCalcGroupDuration() 1493 max_time = tot_time; in dbeCalcGroupDuration() 1501 max_time = exp->getLastEvent () - exp->getStartTime (); in dbeCalcGroupDuration() 1503 return max_time; //nanoseconds in dbeCalcGroupDuration()
|