/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_should_retry.pod | 7 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 D | atkbdc.c | 310 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 D | ntp_intres.c | 122 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/ |
H A D | import_rewind_config_changed.ksh | 164 for retry in $(seq 1 5); do 166 log_note "Retry $retry / 5 for test_add_vdevs()" 180 for retry in $(seq 1 5); do 182 log_note "Retry $retry / 5 for test_attach_vdev()" 195 for retry in $(seq 1 5); do 197 log_note "Retry $retry / 5 for test_detach_vdev()" 213 for retry in $(seq 1 5); do 216 log_note "Retry $retry / 5 for test_attach_detach_vdev()" 230 for retry in $(seq 1 5); do 233 log_note "Retry $retry / 5 for test_remove_vdev()"
|
/freebsd/sys/dev/random/ |
H A D | ivy.c | 72 int retry; in x86_rdrand_store() local 86 retry = RETRY_COUNT; in x86_rdrand_store() 90 "jc 2f\n\t" /* CF is set on success, exit retry loop */ in x86_rdrand_store() 91 "dec %0\n\t" /* otherwise, retry-- */ in x86_rdrand_store() 94 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdrand_store() 95 if (retry == 0) in x86_rdrand_store() 106 int retry; in x86_rdseed_store() local 108 retry = RETRY_COUNT; in x86_rdseed_store() 112 "jc 2f\n\t" /* CF is set on success, exit retry loop */ in x86_rdseed_store() 113 "dec %0\n\t" /* otherwise, retry-- */ in x86_rdseed_store() [all …]
|
H A D | darn.c | 69 int retry; in darn_rng_store() local 71 for (retry = RETRY_COUNT; retry > 0; --retry) { in darn_rng_store() 87 return (retry); in darn_rng_store()
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | BIO_should_retry.3 | 142 BIO_get_retry_BIO, BIO_get_retry_reason, BIO_set_retry_reason \- BIO retry 171 has insufficient data to return. Check for readability and/or retry the 175 has pending data to write. Check for writability and/or retry the 181 \&\fBBIO_retry_type()\fR returns a mask of the cause of a retry condition 195 \&\fBBIO_set_retry_reason()\fR sets the retry reason for a special condition for a given 212 \&\s-1BIO\s0 types will not request a retry, because the underlying I/O 214 signal a retry then it need not call \fBBIO_should_retry()\fR after a failed 218 retry even if the underlying I/O structure is blocking, if a handshake 219 occurs during a call to \fBBIO_read()\fR. An application can retry the failed 223 While an application may retry a failed non blocking call immediately [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/ata/ |
H A D | ceva,ahci-1v84.yaml | 77 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 D | ahci-ceva.txt | 32 - 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 D | ck_elide.h | 94 _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/sys/contrib/dev/mediatek/mt76/ |
H A D | mt76x02_trace.h | 56 __field(u8, retry) 67 __entry->retry = stat->retry; 73 " rate:%04x retry:%d", 76 __entry->rate, __entry->retry
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | sbs,sbs-battery.yaml | 34 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 D | 03-custom_verify.cnf | 8 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 D | htmintrin.h | 150 /* 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/compat/linuxkpi/common/src/ |
H A D | linux_xarray.c | 133 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() 251 retry: in __xa_insert() 258 goto retry; in __xa_insert() 295 retry: in __xa_store() 306 goto retry; in __xa_store()
|
/freebsd/sys/contrib/device-tree/Bindings/hwmon/ |
H A D | adi,ltc4282.yaml | 83 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/crypto/openssl/test/ |
H A D | rdrand_sanitytest.c | 34 int retry; in sanity_check_bytes() local 35 for (retry = 0; retry < max_retries; retry++) { in sanity_check_bytes() 89 * multiplied by the 8x retry loop in asm, and failure probabilities are in sanity_check_rdseed_bytes()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_share/ |
H A D | zfs_share_concurrent_shares.ksh | 107 for retry in $(seq 1 10); do 110 log_note "Wait $retry / 10 for is_shared $mntp (set sharenfs)" 112 if [[ $retry -eq 10 ]]; then 136 for retry in $(seq 1 10); do 139 log_note "Wait $retry / 10 for is_shared $mntp (zfs share)" 141 if [[ $retry -eq 10 ]]; then
|
/freebsd/sys/contrib/openzfs/tests/test-runner/include/ |
H A D | logapi.shlib | 82 # Execute a positive test but retry the command on failure if the output 86 # $1 - retry keyword 87 # $2 - retry attempts 95 typeset retry=$2 103 while (( $retry > 0 )); do 121 _printerror "$@" "Retry in $delay seconds" 124 (( retry=retry - 1 ))
|
/freebsd/lib/libpmc/pmu-events/arch/arm64/hisilicon/hip08/ |
H A D | uncore-l3c.json | 75 "BriefDescription": "Count of the number of retry that L3C suppresses the CPU operations", 76 "PublicDescription": "Count of the number of retry that L3C suppresses the CPU operations", 82 "BriefDescription": "Count of the number of retry that L3C suppresses the ring operations", 83 "PublicDescription": "Count of the number of retry that L3C suppresses the ring operations",
|
/freebsd/contrib/wpa/src/eap_peer/ |
H A D | eap_mschapv2.c | 408 int retry = 1; in eap_mschapv2_failure_txt() local 429 retry = atoi(pos); in eap_mschapv2_failure_txt() 430 wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: retry is %sallowed", in eap_mschapv2_failure_txt() 431 retry == 1 ? "" : "not "); in eap_mschapv2_failure_txt() 479 if (data->prev_error == ERROR_AUTHENTICATION_FAILURE && retry && in eap_mschapv2_failure_txt() 483 "EAP-MSCHAPV2: mark password retry disabled based on local configuration"); in eap_mschapv2_failure_txt() 484 retry = 0; in eap_mschapv2_failure_txt() 487 "EAP-MSCHAPV2: failure message: '%s' (retry %sallowed, error " in eap_mschapv2_failure_txt() 489 msg, retry == 1 ? "" : "not ", data->prev_error); in eap_mschapv2_failure_txt() 498 } else if (retry == 1 && config) { in eap_mschapv2_failure_txt() [all …]
|
/freebsd/contrib/wpa/src/wps/ |
H A D | wps_upnp_event.c | 52 unsigned int retry; /* which retry */ member 60 * Leaves data, retry count etc. alone. 122 wpa_printf(MSG_DEBUG, "WPS UPnP: Retry event %p for subscription %p", in event_retry() 128 e->retry++; in event_retry() 129 wpa_printf(MSG_DEBUG, "WPS UPnP: Try address %d", e->retry); in event_retry() 131 if (e->retry >= dl_list_len(&s->addr_list)) { in event_retry() 290 if (itry++ == e->retry) in event_send_start() 292 if (itry < e->retry) in event_send_start()
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_acad.c | 53 /* Number of times to retry initialization before giving up. */ 233 int retry; in acpi_acad_init_acline() local 240 for (retry = 0; retry < ACPI_ACAD_RETRY_MAX; retry++) { in acpi_acad_init_acline() 248 "acline initialization done, tried %d times\n", retry + 1); in acpi_acad_init_acline()
|
/freebsd/sys/dev/ipmi/ |
H A D | ipmi_kcs.c | 104 int retry, status; in kcs_error() local 107 for (retry = 0; retry < 2; retry++) { in kcs_error() 162 device_printf(sc->ipmi_dev, "KCS: Error retry exhausted\n"); in kcs_error() 172 int retry, status; in kcs_start_write() local 174 for (retry = 0; retry < 10; retry++) { in kcs_start_write() 572 retry: in ipmi_kcs_probe_align() 601 goto retry; in ipmi_kcs_probe_align()
|
/freebsd/sys/dev/eqos/ |
H A D | if_eqos.c | 115 int retry, val; in eqos_miibus_readreg() local 125 for (retry = MII_BUSY_RETRY; retry > 0; retry--) { in eqos_miibus_readreg() 133 if (!retry) { in eqos_miibus_readreg() 146 int retry; in eqos_miibus_writereg() local 158 for (retry = MII_BUSY_RETRY; retry > 0; retry--) { in eqos_miibus_writereg() 164 if (!retry) { in eqos_miibus_writereg() 456 int retry; in eqos_reset() local 459 for (retry = 2000; retry > 0; retry--) { in eqos_reset() 630 int retry; in eqos_stop() local 657 for (retry = 10000; retry > 0; retry--) { in eqos_stop() [all …]
|