Home
last modified time | relevance | path

Searched refs:attempts (Results 1 – 25 of 178) sorted by relevance

12345678

/freebsd/contrib/netbsd-tests/fs/nfs/
H A Dt_mountd.c92 int attempts; in ATF_TC_BODY() local
99 for (attempts = 100; attempts && !quit; attempts--) { in ATF_TC_BODY()
/freebsd/usr.sbin/rpc.statd/
H A Dfile.c303 int attempts; in notify_hosts() local
344 for (attempts = 0; attempts < 44; attempts++) in notify_hosts()
351 if (notify_one_host(hp->hostname, attempts == 0)) in notify_hosts()
360 if (attempts < 10) sleep(5); in notify_hosts()
361 else if (attempts < 20) sleep(60); in notify_hosts()
/freebsd/stand/lua/
H A Dpassword.lua90 local attempts = 1
101 if attempts > 1 then
113 attempts = attempts + 1
/freebsd/tools/regression/security/proc_to_proc/
H A DREADME5 This test suite attempts to determine the behavior of inter-process
13 ptrace cred1 attempts ptrace attach to cred2
14 sighup cred1 attempts SIGHUP of cred2
15 sigsegv cred1 attempts SIGSEGV of cred2
16 see cred1 attempts getpriority() on cred2
17 sched cred1 attempts setpriority() on cred2
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.reap.ksh90 attempts++;
94 /attempts > 10/
H A Dtst.noreap.ksh98 attempts++;
102 /attempts > 10/
H A Dtst.noreapring.ksh90 attempts++;
94 /attempts > 10/
/freebsd/contrib/unbound/iterator/
H A Diter_utils.c485 attempt = a->attempts; in iter_filter_order()
496 attempt = a->attempts; in iter_filter_order()
497 } else if(a->attempts > attempt) { in iter_filter_order()
543 attempt = a->attempts; in iter_filter_order()
554 attempt = a->attempts; in iter_filter_order()
555 } else if(a->attempts > attempt) { in iter_filter_order()
1356 if(a->attempts >= outbound_msg_retry) { in iter_dec_attempts()
1360 if(a->attempts > d) in iter_dec_attempts()
1361 a->attempts -= d; in iter_dec_attempts()
1362 else a->attempts = 0; in iter_dec_attempts()
[all …]
/freebsd/crypto/openssl/providers/implementations/rands/seeding/
H A Drand_unix.c641 int attempts = 3; in ossl_pool_acquire_entropy()
644 while (bytes_needed != 0 && attempts-- > 0) { in ossl_pool_acquire_entropy()
650 attempts = 3; /* reset counter after successful attempt */ in ossl_pool_acquire_entropy()
678 int attempts = 3; in ossl_pool_acquire_entropy()
684 while (bytes_needed != 0 && attempts-- > 0) { in ossl_pool_acquire_entropy()
691 attempts = 3; /* reset counter on successful attempt */ in ossl_pool_acquire_entropy()
/freebsd/crypto/openssl/doc/man3/
H A DBIO_read.pod24 BIO_read_ex() attempts to read I<dlen> bytes from BIO I<b> and places the data
28 BIO_write_ex() attempts to write I<dlen> bytes from I<data> to BIO I<b>.
32 BIO_read() attempts to read I<len> bytes from BIO I<b> and places
45 BIO_get_line() attempts to read from BIO I<b> a line of data up to the next '\n'
53 BIO_write() attempts to write I<len> bytes from I<buf> to BIO I<b>.
55 BIO_puts() attempts to write a NUL-terminated string I<buf> to BIO I<b>.
H A DX509_get_pubkey.pod26 X509_get_pubkey() attempts to decode the public key for certificate B<x>. If
37 X509_set_pubkey() attempts to set the public key for certificate B<x> to
H A DASN1_TYPE_get.pod38 ASN1_TYPE_unpack_sequence() attempts to parse the SEQUENCE present in
43 ASN1_TYPE_pack_sequence() attempts to encode the ASN.1 structure I<s>
H A DOPENSSL_FILE.pod26 The macro B<OPENSSL_FUNC> attempts to yield the name of the C function
/freebsd/sys/dev/vmware/vmci/
H A Dvmci_event.c504 uint32_t attempts = 0; in vmci_event_register_subscription() local
540 for (success = false, attempts = 0; in vmci_event_register_subscription()
541 success == false && attempts < VMCI_EVENT_MAX_ATTEMPTS; in vmci_event_register_subscription()
542 attempts++) { in vmci_event_register_subscription()
/freebsd/sys/arm64/arm64/
H A Dundefined.c206 int attempts, error, Rn, Rd, Rm; in swp_emulate() local
236 attempts = 0; in swp_emulate()
256 if (error != 0 && (++attempts % 5) == 0) in swp_emulate()
/freebsd/sys/vm/
H A Dvm_swapout.c375 int breakout, swapout_flags, tryagain, attempts; in vm_daemon() local
405 attempts = 0; in vm_daemon()
407 attempts++; in vm_daemon()
489 if (attempts <= 8) { in vm_daemon()
516 if (tryagain != 0 && attempts <= 10) { in vm_daemon()
/freebsd/share/examples/ipfilter/rules/
H A Dexample.137 # Log all connection attempts for TCP
/freebsd/contrib/wpa/src/radius/
H A Dradius_client.c116 int attempts; member
390 if (entry->attempts == 0) in radius_client_retransmit()
407 if (entry->attempts == 0) in radius_client_retransmit()
468 entry->attempts++; in radius_client_retransmit()
511 if (entry->attempts >= RADIUS_CLIENT_NUM_FAILOVER || in radius_client_timer()
512 (s < 0 && entry->attempts > 0)) { in radius_client_timer()
697 entry->attempts = 1; in radius_client_list_add()
1129 entry->attempts = 0; in radius_change_server()
/freebsd/contrib/unbound/contrib/
H A Dunbound.service.in29 ; - `RestrictSUIDSGID=yes` ensures that any attempts to set the set-user-ID
32 ; - `RestrictRealTime=yes` ensures that any attempts to enable realtime
/freebsd/sys/contrib/dev/mediatek/mt76/mt7996/
H A Ddebugfs.c528 u32 attempts, success, per; in mt7996_tx_stats_show() local
535 attempts = mib->tx_mpdu_attempts_cnt; in mt7996_tx_stats_show()
537 per = attempts ? 100 - success * 100 / attempts : 100; in mt7996_tx_stats_show()
538 seq_printf(file, "Tx attempts: %8u (MPDUs)\n", attempts); in mt7996_tx_stats_show()
/freebsd/contrib/kyua/utils/process/
H A Dchild.ipp42 /// If the subprocess cannot be completely set up for any reason, it attempts to
77 /// If the subprocess cannot be completely set up for any reason, it attempts to
/freebsd/sys/contrib/openzfs/contrib/intel_qat/patch/
H A D0001-timespec.diff1 This patch attempts to expose timespec and getnstimeofday which were
/freebsd/stand/i386/loader/
H A Dhelp.i38651 to address 0000:7C00 and attempts to run it. Use lsdev to get available
/freebsd/sys/dev/cxgb/common/
H A Dcxgb_t3_hw.c53 int attempts, int delay, u32 *valp) in t3_wait_op_done_val() argument
63 if (--attempts == 0) in t3_wait_op_done_val()
159 int attempts = 10; in t3_mc7_bd_read() local
166 while ((val & F_BUSY) && attempts--) in t3_mc7_bd_read()
658 int attempts = EEPROM_MAX_POLL; in t3_seeprom_read() local
691 int attempts = EEPROM_MAX_POLL; in t3_seeprom_write() local
1014 if (--attempts == 0) in flash_wait_op()
4047 attempts = 50; in mc7_init()
4146 int err = -EIO, attempts, i; in t3_init_hw() local
4206 attempts = 100; in t3_init_hw()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/cpufreq/
H A Dcpufreq-st.txt4 ST's CPUFreq driver attempts to read 'process' and 'version' attributes

12345678