/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/dev/random/ |
H A D | ivy.c | 72 int retry; in x86_rdrand_store() local 86 retry = RETRY_COUNT; 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() 116 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdseed_store() 118 return (retry != 0); in x86_rdseed_store()
|
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/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/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() 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)); \
|
/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()
|
H A D | linux_page.c | 116 retry: in linux_alloc_pages() 128 goto retry; in linux_alloc_pages() 311 retry: in lkpi_vmf_insert_pfn_prot_locked() 316 goto retry; in lkpi_vmf_insert_pfn_prot_locked() 341 goto retry; in lkpi_vmf_insert_pfn_prot_locked() 370 retry: in lkpi_remap_pfn_range() 377 goto retry; in lkpi_remap_pfn_range() 432 retry: in lkpi_unmap_mapping_range() 438 goto retry; in lkpi_unmap_mapping_range()
|
/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/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/contrib/llvm-project/clang/lib/Headers/ |
H A D | htmintrin.h | 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/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()
|
/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/sys/arm/broadcom/bcm2835/ |
H A D | bcm2836_mp.c | 96 int i, retry; in bcm2836_mp_start_ap() local 122 retry = 1000; in bcm2836_mp_start_ap() 129 retry--; in bcm2836_mp_start_ap() 130 if (retry <= 0) { in bcm2836_mp_start_ap()
|
/freebsd/usr.sbin/lpr/common_source/ |
H A D | net.c | 113 retry: in getport() 121 goto retry; in getport() 128 goto retry; in getport() 145 goto retry; in getport() 153 goto retry; in getport() 160 goto retry; in getport()
|
/freebsd/sys/contrib/dev/mediatek/mt76/ |
H A D | mt76x02_trace.h | 56 __field(u8, retry) 67 __entry->retry = stat->retry; 76 __entry->rate, __entry->retry
|
/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() 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/contrib/openzfs/module/icp/api/ |
H A D | kcf_cipher.c | 78 retry: in crypto_encrypt() 98 goto retry; in crypto_encrypt() 149 retry: in crypto_decrypt() 170 goto retry; in crypto_decrypt()
|
/freebsd/libexec/tftpd/ |
H A D | tftp-transfer.c | 248 int n_data, n_ack, writesize, i, retry, windowblock; in tftp_receive() local 305 for (retry = 0; ; retry++) { in tftp_receive() 314 if (retry == maxtimeouts) { in tftp_receive() 317 "giving up", retry, *block); in tftp_receive() 323 retry, *block); in tftp_receive() 361 retry = 0; in tftp_receive()
|
/freebsd/contrib/openpam/modules/pam_unix/ |
H A D | pam_unix.c | 76 int pam_err, retry; in pam_sm_authenticate() local 96 for (retry = 0; retry < 3; ++retry) { in pam_sm_authenticate()
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_acad.c | 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()
|
H A D | acpi_cmbat.c | 538 int retry, valid; in acpi_cmbat_init_battery() local 550 for (retry = 0; retry < ACPI_CMBAT_RETRY_MAX; retry++, AcpiOsSleep(10000)) { in acpi_cmbat_init_battery() 578 if (retry == 0 || !acpi_battery_bst_valid(&sc->bst)) { in acpi_cmbat_init_battery() 582 if (retry == 0 || !acpi_battery_bix_valid(&sc->bix)) in acpi_cmbat_init_battery() 593 if (retry == ACPI_CMBAT_RETRY_MAX) { in acpi_cmbat_init_battery() 598 "battery initialization done, tried %d times\n", retry + 1); in acpi_cmbat_init_battery()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_acts.c | 205 int retry; /* retry index */ member 401 up->retry, sys_phone[up->retry]); in acts_message() 404 refclock_write(peer, sys_phone[up->retry], in acts_message() 405 strlen(sys_phone[up->retry]), in acts_message() 408 up->retry++; in acts_message() 483 * Lock the modem port. If busy, retry later. Note: if in acts_timeout() 528 if (sys_phone[up->retry] == NULL) { in acts_timeout() 613 if (up->msgcnt == 0 && up->retry > in acts_close() [all...] |
/freebsd/contrib/wpa/src/wps/ |
H A D | wps_upnp_event.c | 52 unsigned int retry; /* which retry */ member 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/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/ |
H A D | zpool_create_024_pos.ksh | 81 typeset retry=10 96 while [[ $k -lt $retry ]]; do 100 [ $k -eq $retry ] && return 1
|