/external/autotest/client/site_tests/dummy_Fail/ |
H A D | dummy_Fail.py | 10 global retry_count 11 retry_count = 0 variable 18 """Run test with argument to_throw, retry_count and retry_success_count. 26 global retry_count 27 retry_count += 1 28 if retry_count == retry_success_count:
|
/external/kernel-headers/original/uapi/linux/ |
H A D | ncp_mount.h | 35 unsigned int retry_count; /* And how often should I retry? */ member in struct:ncp_mount_data 58 unsigned int retry_count; /* And how often should I retry? */ member in struct:ncp_mount_data_v4
|
/external/autotest/client/cros/chameleon/ |
H A D | chameleon_screen_test.py | 101 error_list=None, retry_count=2): 110 @param retry_count: A count to retry the screen test. 126 while retry_count: 127 retry_count = retry_count - 1 133 elif retry_count > 0:
|
/external/autotest/client/common_lib/cros/tendo/ |
H A D | privet_helper.py | 66 def _http_request(self, url, request_data=None, retry_count=0, 73 after |retry_delay| seconds and repeat this to a max |retry_count|. 80 @param retry_count: max request retry count. 108 while retry_count >= 0: 111 retry_count -= 1 120 if retry_count < 0: 170 content = self._http_request(url, retry_delay=5, retry_count=5)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
H A D | sonofmmm.cfg | 29 retry_count = 5
|
H A D | service.py | 42 self.retry_count = self.sd.getint('retry_count', 5) 141 while self.retry_count < 0 or empty_reads < self.retry_count:
|
/external/autotest/site_utils/suite_scheduler/ |
H A D | manifest_versions.py | 151 retry_count = 0 153 while retry_count <= self._CLONE_MAX_RETRIES: 154 if retry_count: 156 retry_count += 1 159 ' attempt %d.', retry_count) 167 (self._MANIFEST_VERSIONS_URL, retry_count, msg))
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
H A D | IOHandler.java | 162 int retry_count = 0; 192 while (retry_count < max_retry) { 218 "IOException occured retryCount " + retry_count); 227 retry_count++; 262 while (retry_count < max_retry) { 300 retry_count++;
|
/external/autotest/site_utils/ |
H A D | gmail_lib.py | 142 retry_count = MAX_RETRY if retry else 0 167 handler, retry_count, _run, sleep=RETRY_DELAY,
|
H A D | run_suite.py | 358 retry_count=0, testname=None): 366 @param retry_count How many times the test has been retried. 372 self.retry_count = retry_count 390 if self.retry_count > 0: 391 info_strings.append('retry_count: %d' % self.retry_count) 1132 retry_count = self._compute_retry_count(v) 1133 if retry_count > 0: 1134 retry_counts[v['test_idx']] = retry_count [all...] |
H A D | run_suite_unittest.py | 253 self.assertEqual(collector._buildbot_links[i].retry_count, 0)
|
/external/toybox/toys/pending/ |
H A D | tftpd.c | 91 int fd, done = 0, retry_count = 12, timeout = 100, len; local 141 retry_count = 12, timeout = 100, pktopcode = TFTPD_OP_ACK; 171 if (!--retry_count) {
|
/external/autotest/server/cros/servo/ |
H A D | servo.py | 478 retry_count = Servo.GET_RETRY_MAX 479 while gpio_value != self.get(gpio_name) and retry_count: 481 retry_count) 482 retry_count -= 1 484 if not retry_count:
|
/external/kernel-headers/original/uapi/rdma/ |
H A D | ib_user_cm.h | 147 __u8 retry_count; member in struct:ib_ucm_req 245 __u8 retry_count; member in struct:ib_ucm_req_event_resp
|
H A D | rdma_user_cm.h | 186 __u8 retry_count; member in struct:rdma_ucm_conn_param
|
/external/libbrillo/brillo/streams/ |
H A D | tls_stream.cc | 216 for (int retry_count = 0; retry_count < 4; retry_count++) {
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | ProcessKDP.cpp | 263 for (uint32_t retry_count = 0; retry_count < max_retry_count; ++retry_count)
|
/external/autotest/server/cros/network/ |
H A D | netperf_runner.py | 530 def run(self, ignore_failures=False, retry_count=3): 536 @param retry_count int number of times to retry the netperf command if 551 for attempt in range(retry_count):
|
/external/libnfc-nci/src/nfc/tags/ |
H A D | rw_i93.c | 3005 if ( (rw_cb.tcb.i93.retry_count < RW_MAX_RETRIES) 3009 rw_cb.tcb.i93.retry_count++; 3010 RW_TRACE_ERROR1 ("rw_i93_process_timeout (): retry_count = %d", rw_cb.tcb.i93.retry_count); 3026 rw_cb.tcb.i93.retry_count = 0; 3064 if ( (p_i93->retry_count < RW_MAX_RETRIES) 3067 p_i93->retry_count++; 3069 RW_TRACE_ERROR1 ("rw_i93_data_cback (): retry_count = %d", p_i93->retry_count); 3084 p_i93->retry_count [all...] |
/external/wpa_supplicant_8/hostapd/src/pae/ |
H A D | ieee802_1x_kay_i.h | 237 u32 retry_count; member in struct:ieee802_1x_mka_participant
|
/external/wpa_supplicant_8/src/pae/ |
H A D | ieee802_1x_kay_i.h | 237 u32 retry_count; member in struct:ieee802_1x_mka_participant
|
/external/wpa_supplicant_8/wpa_supplicant/src/pae/ |
H A D | ieee802_1x_kay_i.h | 237 u32 retry_count; member in struct:ieee802_1x_mka_participant
|
/external/libvpx/libvpx/ |
H A D | y4minput.c | 24 int retry_count = 0; local 41 } while (!feof(file) && len < size && ++retry_count < kMaxRetries); 46 (uint32_t)len, (uint32_t)size, file_error, retry_count,
|
/external/libdrm/intel/ |
H A D | intel_bufmgr_fake.c | 1438 int retry_count = 0; local 1452 if (retry_count == 0) { 1453 retry_count++;
|
/external/autotest/server/cros/dynamic_suite/ |
H A D | suite.py | 883 retry_count = (test.job_retries - 887 job.id, retry_for, retry_count)
|