Home
last modified time | relevance | path

Searched full:retry (Results 1 – 25 of 1450) sorted by relevance

12345678910>>...58

/freebsd/crypto/openssl/doc/man3/
H A DBIO_should_retry.pod7 BIO_get_retry_BIO, BIO_get_retry_reason, BIO_set_retry_reason - BIO retry
36 has insufficient data to return. Check for readability and/or retry the
40 has pending data to write. Check for writability and/or retry the
46 BIO_retry_type() returns a mask of the cause of a retry condition
60 BIO_set_retry_reason() sets the retry reason for a special condition for a given
78 BIO types will not request a retry, because the underlying I/O
80 signal a retry then it need not call BIO_should_retry() after a failed
84 retry even if the underlying I/O structure is blocking, if a handshake
85 occurs during a call to BIO_read(). An application can retry the failed
89 While an application may retry a failed non blocking call immediately
[all …]
/freebsd/sys/dev/atkbdc/
H A Datkbdc.c310 sc->retry = 100000 / ((KBDD_DELAYTIME * 2) + read_delay); in atkbdc_setup()
312 sc->retry = 5000; in atkbdc_setup()
432 int retry; in wait_while_controller_busy() local
436 retry = kbdc->retry; in wait_while_controller_busy()
447 if (--retry < 0) in wait_while_controller_busy()
460 int retry; in wait_for_data() local
464 retry = kbdc->retry * 2; in wait_for_data()
468 if (--retry < 0) in wait_for_data()
479 int retry; in wait_for_kbd_data() local
483 retry = kbdc->retry * 2; in wait_for_kbd_data()
[all …]
/freebsd/contrib/ntp/libntp/
H A Dntp_intres.c122 int retry;
134 int retry;
148 int retry;
161 int retry;
233 int retry,
272 gai_req->retry = retry; in getaddrinfo_sometime_ex()
350 gai_resp->retry = gai_req->retry; in blocking_getaddrinfo()
368 * retry sleep in blocking_getaddrinfo()
128 int retry; global() member
140 int retry; global() member
154 int retry; global() member
167 int retry; global() member
239 getaddrinfo_sometime_ex(const char * node,const char * service,const struct addrinfo * hints,int retry,gai_sometime_callback callback,void * context,u_int qflags) getaddrinfo_sometime_ex() argument
463 getaddrinfo_sometime(const char * node,const char * service,const struct addrinfo * hints,int retry,gai_sometime_callback callback,void * context) getaddrinfo_sometime() argument
1062 int retry; manage_dns_retry_interval() local
[all...]
/freebsd/secure/lib/libcrypto/man/man3/
H A DBIO_should_retry.366 BIO_get_retry_BIO, BIO_get_retry_reason, BIO_set_retry_reason \- BIO retry
95 has insufficient data to return. Check for readability and/or retry the
99 has pending data to write. Check for writability and/or retry the
105 \&\fBBIO_retry_type()\fR returns a mask of the cause of a retry condition
119 \&\fBBIO_set_retry_reason()\fR sets the retry reason for a special condition for a given
136 BIO types will not request a retry, because the underlying I/O
138 signal a retry then it need not call \fBBIO_should_retry()\fR after a failed
142 retry even if the underlying I/O structure is blocking, if a handshake
143 occurs during a call to \fBBIO_read()\fR. An application can retry the failed
147 While an application may retry a failed non blocking call immediately
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dimport_rewind_config_changed.ksh165 for retry in $(seq 1 5); do
167 log_note "Retry $retry / 5 for test_add_vdevs()"
181 for retry in $(seq 1 5); do
183 log_note "Retry $retry / 5 for test_attach_vdev()"
196 for retry in $(seq 1 5); do
198 log_note "Retry $retry / 5 for test_detach_vdev()"
214 for retry in $(seq 1 5); do
217 log_note "Retry $retry / 5 for test_attach_detach_vdev()"
231 for retry in $(seq 1 5); do
234 log_note "Retry $retry / 5 for test_remove_vdev()"
/freebsd/crypto/openssl/include/internal/
H A Dquic_wire_pkt.h279 * Retry
288 * 1i0hrv r=Retry, v=Version Negotiation
304 * r Retry Token
305 * r Retry Integrity Tag
326 * Valid if ((type == 1RTT || (version && type != RETRY)) && !partial).
346 * The unused bits in the low 4 bits of a Retry packet header's first byte.
347 * This is used to ensure that Retry packets have the same bit-for-bit
349 * This is necessary to validate Retry packet headers.
379 * Valid if ((type == 1RTT || (version && type != RETRY)) && !partial).
396 * Though 1-RTT, Retry and Version Negotiation packets do not contain an
[all …]
/freebsd/secure/lib/libcrypto/man/man7/
H A Dossl-guide-quic-client-non-block.7105 the application has to do, it must also be prepared to come back and retry the
108 such that it might succeed on the retry attempt, but this does not have to be
109 the case. It can retry at any time.
111 Note that it is important that you retry exactly the same operation that you
115 write some other text when you retry the operation.
182 to the \fBSSL\fR object and we get a "retry" response (\fBSSL_ERROR_WANT_READ\fR or
184 read or write to the underlying socket and the socket signalled the "retry".
185 With QUIC that is not the case. OpenSSL may signal retry as a result of an
188 socket needs to retry or not.
316 the event of a non-fatal failure, it waits until a retry of the I/O operation
[all …]
H A Dossl-guide-tls-client-non-block.7121 application has to do, it must also be prepared to come back and retry the
125 before), but this does not have to be the case. It can retry at any time.
127 Note that it is important that you retry exactly the same operation that you
131 some other text when you retry the operation.
263 the event of a non-fatal failure, it waits until a retry of the I/O operation
279 In such a case we must retry the same \fBSSL_connect\fR\|(3) call at a later time.
286 \& continue; /* Retry */
288 \& goto end; /* Cannot retry: error */
301 we should retry exactly the same \fBSSL_write_ex\fR\|(3) call again. Note that the
304 retry. An optional mode does exist (\fBSSL_MODE_ACCEPT_MOVING_WRITE_BUFFER\fR)
[all …]
/freebsd/crypto/openssl/doc/man7/
H A Dossl-guide-tls-client-non-block.pod70 application has to do, it must also be prepared to come back and retry the
74 before), but this does not have to be the case. It can retry at any time.
76 Note that it is important that you retry exactly the same operation that you
80 some other text when you retry the operation.
209 the event of a non-fatal failure, it waits until a retry of the I/O operation
227 In such a case we must retry the same L<SSL_connect(3)> call at a later time.
233 continue; /* Retry */
235 goto end; /* Cannot retry: error */
248 we should retry exactly the same L<SSL_write_ex(3)> call again. Note that the
251 retry. An optional mode does exist (B<SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER>)
[all …]
H A Dossl-guide-quic-client-non-block.pod55 the application has to do, it must also be prepared to come back and retry the
58 such that it might succeed on the retry attempt, but this does not have to be
59 the case. It can retry at any time.
61 Note that it is important that you retry exactly the same operation that you
65 write some other text when you retry the operation.
130 to the B<SSL> object and we get a "retry" response (B<SSL_ERROR_WANT_READ> or
132 read or write to the underlying socket and the socket signalled the "retry".
133 With QUIC that is not the case. OpenSSL may signal retry as a result of an
136 socket needs to retry or not.
263 the event of a non-fatal failure, it waits until a retry of the I/O operation
[all …]
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dceva,ahci-1v84.yaml77 ceva,p0-retry-params:
80 Retry interval timing value for port 0.
82 ceva,p0-retry-params = /bits/ 16 <RIT RCT>;
84 - description: RIT - Retry Interval Timer.
123 ceva,p1-retry-params:
126 Retry interval timing value for port 1.
128 ceva,pN-retry-params = /bits/ 16 <RIT RCT>;
130 - description: RIT - Retry Interval Timer.
156 - ceva,p0-retry-params
160 - ceva,p1-retry
[all...]
H A Dahci-ceva.txt32 - ceva,p0-retry-params: Retry interval timing value for port 0.
33 - ceva,p1-retry-params: Retry interval timing value for port 1.
35 ceva,pN-retry-params = /bits/ 16 <RIT RCT>;
36 RIT: Retry Interval Timer.
54 ceva,p0-retry-params = /bits/ 16 <0x0216 0x7F06>;
59 ceva,p1-retry-params = /bits/ 16 <0x0216 0x7F06>;
/freebsd/sys/contrib/ck/include/
H A Dck_elide.h94 _ck_elide_fallback(int *retry, in _ck_elide_fallback() argument
101 if (*retry > 0) in _ck_elide_fallback()
110 *retry = c->retry_busy; in _ck_elide_fallback()
121 *retry = c->retry_conflict; in _ck_elide_fallback()
128 * path instead. If retry bit is not set, then take the hint. in _ck_elide_fallback()
150 int retry; \
157 retry = c->retry_conflict; \
167 hint = _ck_elide_fallback(&retry, st, c, status); \
172 while (--retry != 0) { \
184 } while (CK_CC_LIKELY(--retry > 0)); \
[all …]
/freebsd/crypto/openssl/demos/guide/
H A Dtls-client-non-block.c284 continue; /* Retry */ in main()
286 goto end; /* Cannot retry: error */ in main()
292 continue; /* Retry */ in main()
294 goto end; /* Cannot retry: error */ in main()
298 continue; /* Retry */ in main()
300 goto end; /* Cannot retry: error */ in main()
304 continue; /* Retry */ in main()
306 goto end; /* Cannot retry: error */ in main()
317 continue; /* Retry */ in main()
324 goto end; /* Cannot retry: error */ in main()
[all …]
H A Dquic-client-non-block.c346 continue; /* Retry */ in main()
348 goto end; /* Cannot retry: error */ in main()
354 continue; /* Retry */ in main()
356 goto end; /* Cannot retry: error */ in main()
360 continue; /* Retry */ in main()
362 goto end; /* Cannot retry: error */ in main()
367 continue; /* Retry */ in main()
369 goto end; /* Cannot retry: error */ in main()
380 continue; /* Retry */ in main()
387 goto end; /* Cannot retry: error */ in main()
[all …]
/freebsd/sys/contrib/dev/mediatek/mt76/
H A Dmt76x02_trace.h56 __field(u8, retry)
67 __entry->retry = stat->retry;
73 " rate:%04x retry:%d",
76 __entry->rate, __entry->retry
H A Dmcu.c76 unsigned int retry = 0; in mt76_mcu_skb_send_and_get_msg() local
97 retry: in mt76_mcu_skb_send_and_get_msg()
98 /* orig skb might be needed for retry, mcu_skb_send_msg consumes it */ in mt76_mcu_skb_send_and_get_msg()
115 orig_skb && retry++ < dev->mcu_ops->max_retry) { in mt76_mcu_skb_send_and_get_msg()
116 dev_err(dev->dev, "Retry message %08x (seq %d)\n", in mt76_mcu_skb_send_and_get_msg()
119 goto retry; in mt76_mcu_skb_send_and_get_msg()
/freebsd/sys/contrib/device-tree/Bindings/power/supply/
H A Dsbs,sbs-battery.yaml34 sbs,i2c-retry-count:
36 The number of times to retry I2C transactions on I2C IO failure.
40 sbs,poll-retry-count:
79 sbs,i2c-retry-count = <2>;
80 sbs,poll-retry-count = <10>;
/freebsd/crypto/openssl/test/ssl-tests/
H A D03-custom_verify.cnf8 test-3 = 3-verify-custom-retry
95 [3-verify-custom-retry]
96 ssl_conf = 3-verify-custom-retry-ssl
98 [3-verify-custom-retry-ssl]
99 server = 3-verify-custom-retry-server
100 client = 3-verify-custom-retry-client
102 [3-verify-custom-retry-server]
107 [3-verify-custom-retry-client]
114 client = 3-verify-custom-retry-client-extra
116 [3-verify-custom-retry-client-extra]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dhtmintrin.h150 /* Helper intrinsics to retry tbegin in case of transient failure. */
176 #define __builtin_tbegin_retry(tdb, retry) \ argument
178 __builtin_tbegin_retry_null(retry) : \
179 __builtin_tbegin_retry_tdb(tdb, retry))
205 #define __builtin_tbegin_retry_nofloat(tdb, retry) \ argument
207 __builtin_tbegin_retry_nofloat_null(retry) : \
208 __builtin_tbegin_retry_nofloat_tdb(tdb, retry))
/freebsd/sys/contrib/device-tree/Bindings/hwmon/
H A Dadi,ltc4282.yaml83 adi,overcurrent-retry:
85 If set, enables the chip to auto-retry 256 timer cycles after an
89 adi,overvoltage-retry-disable:
91 If set, disables the chip to auto-retry 50ms after an Overvoltage fault.
95 adi,undervoltage-retry-disable:
97 If set, disables the chip to auto-retry 50ms after an Undervoltage fault.
/freebsd/sys/dev/random/
H A Divy.c65 int retry; in x86_rdrand_store() local
79 retry = RETRY_COUNT; in x86_rdrand_store()
83 "jc 2f\n\t" /* CF is set on success, exit retry loop */ in x86_rdrand_store()
84 "dec %0\n\t" /* otherwise, retry-- */ in x86_rdrand_store()
87 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdrand_store()
88 if (retry == 0) in x86_rdrand_store()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_xarray.c133 retry: in __xa_alloc()
140 goto retry; in __xa_alloc()
147 goto retry; in __xa_alloc()
195 retry: in __xa_alloc_cyclic()
208 goto retry; in __xa_alloc_cyclic()
212 goto retry; in __xa_alloc_cyclic()
264 retry: in __xa_insert()
271 goto retry; in __xa_insert()
308 retry: in __xa_store()
319 goto retry; in __xa_store()
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dfast.c38 * preauth_required error's padata and retry with FAST. So, this
422 * if it doesn't decode as either. In either case, set *retry to indicate
430 krb5_boolean *retry) in krb5int_fast_process_error() argument
442 if (retry) in krb5int_fast_process_error()
443 *retry = 0; in krb5int_fast_process_error()
456 if (retry != NULL) in krb5int_fast_process_error()
457 *retry = 0; in krb5int_fast_process_error()
485 * to retry the error if a cookie is present in krb5int_fast_process_error()
487 if (retry != NULL) { in krb5int_fast_process_error()
488 *retry = (*out_padata)[1] != NULL; in krb5int_fast_process_error()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_share/
H A Dzfs_share_concurrent_shares.ksh108 for retry in $(seq 1 10); do
111 log_note "Wait $retry / 10 for is_shared $mntp (set sharenfs)"
113 if [[ $retry -eq 10 ]]; then
137 for retry in $(seq 1 10); do
140 log_note "Wait $retry / 10 for is_shared $mntp (zfs share)"
142 if [[ $retry -eq 10 ]]; then

12345678910>>...58