Searched refs:retry (Results 1 - 25 of 420) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libresolv2/common/sunw/
H A Dsunw_mtctxres.c84 __res_override_retry(int retry) { argument
85 ___mtctxres()->retry_private = retry;
88 * old retry setting, and restoring it, is handled by __res_retry()
99 * no override retry value is in effect, and the way we expect
110 __res_retry(int retry) { argument
113 mt->retry_save = retry;
114 return ((mt->retry_private != 0) ? mt->retry_private : retry);
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dqlc.conf90 #Name: Login retry count
92 #Usage: This field specifies the maximum number of retry attempts
96 login-retry-count=4;
137 #Name: Port down retry count
143 port-down-retry-count=8;
145 #Name: Port down retry delay
151 port-down-retry-delay=2;
153 #Name: Queue full retry count
155 #Usage: This field specified the number of times to retry a SCSI
157 queue-full-retry
[all...]
/illumos-gate/usr/src/cmd/bnu/
H A Dsystat.c42 systat(name, type, text, retry)
45 long retry;
84 retry = 0;
92 retry = MAXRETRYTIME;
95 default: /* increment count and set up retry time */
97 if (!retry) { /* use exponential backoff */
99 retry = RETRYTIME;
101 retry = presretry + presretry;
102 if (retry > MAXRETRYTIME)
103 retry
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A Dnis_ldap.c84 __nis_retry_sleep(__nisdb_retry_t *retry, int forceSleep) { argument
86 if (retry == NULL)
89 if (retry->attempts > 0) {
90 retry->attempts -= 1;
91 } else if (retry->attempts == 0 && !forceSleep) {
95 (void) poll(NULL, 0, retry->timeout*1000);
/illumos-gate/usr/src/uts/common/io/
H A Decpp.conf57 # ecpp will re-examine the device every centronics-retry milliseconds.
60 centronics-retry=750;
/illumos-gate/usr/src/cmd/factor/
H A Dfactor.c98 retry:
104 goto retry;
120 retry:
126 goto retry;
/illumos-gate/usr/src/lib/storage/libg_fc/common/
H A Dcmd.c83 * wait between 1/10 - 1/2 seconds before retry.
183 retry:
222 goto retry;
234 goto retry;
243 goto retry;
262 * between each retry. This random wait is to avoid
274 goto retry;
288 goto retry;
302 goto retry;
315 goto retry;
[all...]
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkvm_cpu.c59 int retry = 0; local
66 retry = 1;
69 if (retry)
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Ddownload.c60 int retry; local
212 * (2) retry the sending of status messages.
215 retry = 0;
217 if (retry == 1) {
246 retry++;
247 } while (bootOpt && (retry < 2));
/illumos-gate/usr/src/lib/nsswitch/dns/common/
H A Ddns_mt.c242 * own function to establish an override retry. If we can get a pointer
248 __fallback_override_retry(int retry) { argument
254 old_retry = res->retry;
255 res->retry = retry;
/illumos-gate/usr/src/cmd/lms/
H A Dglue.h60 int retry(unsigned char *buff, int len);
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Ddlfcns.c83 const char *retry; local
96 retry = MSG_ORIG(MSG_STR_EMPTY);
98 retry = MSG_INTL(MSG_STR_RETRY);
101 dbg_print(lml, MSG_INTL(MSG_DL_DLOPEN), name, NAME(clmp), retry,
167 const char *str, *retry, *from = NAME(clmp); local
192 retry = MSG_ORIG(MSG_STR_EMPTY);
194 retry = MSG_INTL(MSG_STR_RETRY);
203 from, retry, str);
206 from, next, retry, str);
/illumos-gate/usr/src/uts/common/sys/scsi/targets/
H A Dses.h155 int ses_retries; /* retry count */
258 * Number of times we'll retry a normal operation.
277 #define SES_CMD_RETRY1(retry) \
278 retry += (retry > 0)? (SES_RETRY_MULTIPLIER -1) : 0;
281 #define SES_CMD_RETRY2(retry) \
282 retry += (retry > 0)? (SES_RETRY_MULTIPLIER -2) : 0;
285 #define SES_CMD_RETRY4(retry) \
286 retry
[all...]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dsm_resolve.c379 ** retry -- number of retries
387 dns_lookup_int(domain, rr_class, rr_type, retrans, retry)
392 int retry;
413 if (retry > 0)
415 save_retry = _res.retry;
416 _res.retry = retry;
431 if (retry > 0)
432 _res.retry = save_retry;
438 dns_lookup(domain, type_name, retrans, retry)
[all...]
H A Dsm_resolve.h140 int retry));
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dexecvp.c77 retry:
95 goto retry;
/illumos-gate/usr/src/cmd/syseventd/modules/devfsadmd_mod/
H A Ddevfsadmd_mod.c217 int retry = 0; local
236 retry = 0;
247 * restart daemon and retry once more
250 (retry == RETRY_DAEMON_RESTART) ||
251 ((retry % RETRY_DAEMON_INTERVAL) == 0)) {
256 if (retry == RETRY_MSG_THRESHOLD) {
261 ++retry;
267 * and reset delivery retry state.
273 retry = 0;
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DListener.java215 boolean retry = true;
251 // Die if we can't retry.
253 Assert.slpassert(retry,
258 retry = false;
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/cherrystone/psvcpolicy/
H A Dpsvcpolicy.c383 int retry; local
396 retry = 0;
398 if (retry)
417 retry++;
418 } while ((retry < n_retry_fan) && (speed <= low_thresh));
543 int retry; local
553 retry = 0;
555 if (retry)
561 retry++;
564 (retry < n_retry_temp_shutdow
622 int retry; local
888 int retry; local
1236 int retry; local
1623 int retry; local
[all...]
/illumos-gate/usr/src/lib/libresolv/
H A Dresolv.h72 int retry; /* number of times to retransmit */ member in struct:state
/illumos-gate/usr/src/cmd/cdrw/
H A Dtoshiba.c80 int ret, retry; local
98 for (retry = 0; retry < 3; retry++) {
/illumos-gate/usr/src/cmd/lp/model/netpr/
H A Dtcp_misc.c77 int retry; local
103 retry = 0;
126 retry++;
139 } while (retry);
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_open.c82 retry:
158 goto retry;
/illumos-gate/usr/src/cmd/sh/
H A Dword.c253 retry:
257 goto retry;
306 retry:
315 goto retry; /* = c = readc(); */
390 goto retry;
418 retry:
431 * and exited then turn the modes off and retry
440 goto retry;
447 goto retry;
/illumos-gate/usr/src/uts/sun4v/io/
H A Ddrctl_impl.c75 retry:
134 goto retry;

Completed in 195 milliseconds

1234567891011>>