HomeSort by relevance Sort by last modified time
    Searched refs:attempts (Results 26 - 50 of 273) sorted by null

12 3 4 5 6 7 8 91011

  /prebuilts/go/linux-x86/misc/cgo/testplugin/altpath/src/plugin-mismatch/
main.go 11 // imported by plugin1. A program that attempts to load plugin1 and
  /external/skia/experimental/Networking/
SkSockets.cpp 97 int attempts = 0; local
108 ++attempts;
146 // h.done, h.bytes, fSockfd, attempts);
149 attempts = 0;
184 int attempts = 0; local
199 attempts++;
229 // h.done, h.bytes, i, attempts);
232 attempts = 0;
  /external/skqp/experimental/Networking/
SkSockets.cpp 97 int attempts = 0; local
108 ++attempts;
146 // h.done, h.bytes, fSockfd, attempts);
149 attempts = 0;
184 int attempts = 0; local
199 attempts++;
229 // h.done, h.bytes, i, attempts);
232 attempts = 0;
  /system/core/fastboot/
udp.cpp 119 // Sends |length| bytes from |data| and waits for the response packet up to |attempts| times.
125 size_t rx_length, int attempts, std::string* error);
130 uint8_t* rx_data, size_t rx_length, int attempts,
207 size_t rx_length, int attempts, std::string* error) {
229 rx_length, attempts, error);
254 size_t rx_length, const int attempts, std::string* error) {
258 int attempts_left = attempts;
304 attempts_left = attempts;
  /external/autotest/server/cros/
tradefed_utils.py 28 attempts = 0
31 attempts += 1
35 filelock.acquire(random.uniform(0.0, pow(2.0, attempts)))
38 # happened to the locking thread. 11 attempts is between 15 and
40 if attempts > 11:
56 logging.info('Acquired cache lock after %d attempts.', attempts)
  /external/skia/infra/bots/recipe_modules/run/
api.py 116 def with_retry(self, steptype, name, attempts, between_attempts_fn=None,
118 for attempt in xrange(attempts):
129 if attempt == attempts - 1:
  /external/skqp/infra/bots/recipe_modules/run/
api.py 117 def with_retry(self, steptype, name, attempts, between_attempts_fn=None,
119 for attempt in xrange(attempts):
130 if attempt == attempts - 1:
  /tools/test/connectivity/acts/tests/google/bt/car_bt/
BtCarHfpConferenceTest.py 49 attempts = 2
51 while attempts > 0 and not connected:
56 attempts -= 1
BtCarHfpFuzzTest.py 40 attempts = 2
42 while attempts > 0 and not connected:
47 attempts -= 1
BtCarPairingTest.py 66 self.car, self.ph, attempts=1, auto_confirm=False):
121 self.car, self.ph, attempts=1, auto_confirm=False):
142 self.car, self.ph, attempts=1, auto_confirm=False):
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
RunUtilFuncTest.java 69 * Verify that multiple attempts are made.
74 int attempts = 0;
77 attempts++;
78 return attempts == maxAttempts;
  /external/autotest/client/site_tests/network_ProxyResolver/
network_ProxyResolver.py 285 attempts = timeout
286 while attempts > 0:
290 attempts -= 1
312 attempts = timeout
314 while attempts > 0:
319 attempts -= 1
  /prebuilts/go/darwin-x86/src/net/
tcpsock_unix_test.go 49 attempts := int(1e4) // larger is better
50 wg.Add(attempts)
52 for i := 0; i < attempts; i++ {
dnsconfig_unix.go 27 attempts int // lost packets before giving up on server
41 attempts: 2,
109 case hasPrefix(s, "attempts:"):
114 conf.attempts = n
  /prebuilts/go/linux-x86/src/net/
tcpsock_unix_test.go 49 attempts := int(1e4) // larger is better
50 wg.Add(attempts)
52 for i := 0; i < attempts; i++ {
  /external/curl/docs/cmdline-opts/
fail.d 7 better enable scripts etc to better deal with failed attempts. In normal cases
  /external/vboot_reference/firmware/lib/
rollback_index.c 87 int attempts = 3; local
89 while (attempts--) {
128 int attempts = 3; local
135 while (attempts--) {
184 int attempts = 3; local
186 while (attempts--) {
223 int attempts = 3; local
230 while (attempts--) {
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardSecurityContainer.java 218 private void showAlmostAtWipeDialog(int attempts, int remaining, int userType) {
223 attempts, remaining);
227 attempts, remaining);
231 attempts, remaining);
237 private void showWipeDialog(int attempts, int userType) {
242 attempts);
246 attempts);
250 attempts);
271 // N attempts. Once we get below the grace period, we post this dialog every time as a
273 // Check which profile has the strictest policy for failed password attempts
    [all...]
  /prebuilts/go/darwin-x86/src/os/
wait_unimp.go 9 // blockUntilWaitable attempts to block until a call to p.Wait will
  /prebuilts/go/linux-x86/src/os/
wait_unimp.go 9 // blockUntilWaitable attempts to block until a call to p.Wait will
  /external/tensorflow/tensorflow/python/estimator/
exporter_test.py 154 attempts = 0
155 while attempts < max_directory_creation_attempts:
167 attempts += 1
170 export_dir, attempts, max_directory_creation_attempts))
172 "{} attempts.".format(max_directory_creation_attempts))
  /tools/test/connectivity/acts/tests/google/bt/
BtFactoryResetTest.py 57 if not pair_pri_to_sec(self.pri_dut, self.sec_dut, attempts=1):
  /system/netd/server/
IptablesRestoreControllerTest.cpp 136 int attempts; local
137 for (attempts = 0; attempts < XT_LOCK_ATTEMPTS; attempts++) {
143 EXPECT_LT(attempts, XT_LOCK_ATTEMPTS) <<
144 "Could not acquire iptables lock after " << XT_LOCK_ATTEMPTS << " attempts " <<
  /development/testrunner/
adb_interface.py 410 attempts = 0
412 while not success and (attempts*wait_period) < wait_time:
426 attempts += 1
446 attempts = 0
448 while not boot_complete and (attempts*wait_period) < wait_time:
455 attempts += 1
  /prebuilts/go/darwin-x86/src/go/types/
objset.go 17 // insert attempts to insert an object obj into objset s.

Completed in 503 milliseconds

12 3 4 5 6 7 8 91011