HomeSort by relevance Sort by last modified time
    Searched refs:retry_max (Results 1 - 6 of 6) sorted by null

  /external/curl/lib/
tftp.c 131 int retry_max; member in struct:tftp_state_data
225 state->retry_max = (int)timeout/5;
227 if(state->retry_max < 1)
229 state->retry_max = 1;
232 state->retry_time = (int)timeout/state->retry_max;
249 state->retry_max = (int)timeout/5;
252 if(state->retry_max<3)
253 state->retry_max=3;
255 if(state->retry_max>50)
256 state->retry_max=50
    [all...]
  /external/libevent/
http-internal.h 88 int retry_max; /* maximum number of retries */ member in struct:evhttp_connection
http.c     [all...]
  /external/ppp/pppd/plugins/radius/
sendserver.c 207 int retry_max; local
258 retry_max = data->retries; /* Max. numbers to try for reply */
316 * Timed out waiting for response. Retry "retry_max" times
317 * before giving up. If retry_max = 0, don't retry at all.
319 if (++retries >= retry_max)
  /external/libevent/include/event2/
http.h 483 int retry_max);
  /external/autotest/server/cros/dynamic_suite/
suite.py 59 {job_id: {'state':RetryHandler.States, 'retry_max':int}}
78 - retry_max:
112 retry_max=test.job_retries)
115 def _add_job(self, new_job_id, retry_max):
119 @param retry_max: The maximum of times that we could retry
130 'retry_max': retry_max}
158 retry_max=old_record['retry_max'] - 1)
191 - retry_max == 0 --> the last retry job, no more retr
    [all...]

Completed in 331 milliseconds