Searched refs:attempts (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DHLSLCompiler.h27 const UINT optimizationFlags[], const char *flagNames[], int attempts) const;
H A DHLSLCompiler.cpp74 const UINT optimizationFlags[], const char *flagNames[], int attempts) const
84 for (int i = 0; i < attempts; ++i)
115 if (i + 1 < attempts)
/external/smack/src/org/jivesoftware/smack/
H A DReconnectionManager.java93 * Holds the current number of reconnection attempts
95 private int attempts = 0;
103 attempts++;
104 if (attempts > 13) {
107 if (attempts > 7) {
/external/chromium_org/chrome/browser/chromeos/geolocation/
H A Dsimple_geolocation_unittest.cc90 size_t attempts() const { return attempts_; } function in class:chromeos::TestGeolocationAPIURLFetcherCallback
123 size_t attempts() const { return url_callback_->attempts(); } function in class:chromeos::GeolocationAPIFetcherFactory
186 EXPECT_EQ(1U, url_factory.attempts());
207 EXPECT_EQ(4U, url_factory.attempts());
237 EXPECT_GE(url_factory.attempts(), 2U);
238 if (url_factory.attempts() > expected_retries + 1) {
240 << "SimpleGeolocationTest::InvalidResponse: Too many attempts ("
241 << url_factory.attempts() << "), no more then " << expected_retries + 1
244 if (url_factory.attempts() < expected_retrie
[all...]
/external/chromium_org/chrome/browser/chromeos/timezone/
H A Dtimezone_unittest.cc128 size_t attempts() const { return attempts_; } function in class:chromeos::TestTimeZoneAPIURLFetcherCallback
161 size_t attempts() const { return url_callback_->attempts(); } function in class:chromeos::TimeZoneAPIFetcherFactory
222 EXPECT_EQ(1U, url_factory.attempts());
245 EXPECT_EQ(4U, url_factory.attempts());
277 EXPECT_GE(url_factory.attempts(), 2U);
278 if (url_factory.attempts() > expected_retries + 1) {
279 LOG(WARNING) << "TimeZoneTest::InvalidResponse: Too many attempts ("
280 << url_factory.attempts() << "), no more then "
283 if (url_factory.attempts() < expected_retrie
[all...]
/external/chromium_org/v8/src/compiler/
H A Dgraph-reducer.cc28 for (unsigned attempts = 0; attempts <= kMaxAttempts; ++attempts) {
/external/chromium_org/net/dns/
H A Ddns_config_service.cc104 attempts(2),
122 (attempts == d.attempts) &&
135 attempts = d.attempts;
158 dict->SetInteger("attempts", attempts);
H A Ddns_config_service.h112 // Maximum number of attempts, see res_state.retry.
113 int attempts; member in struct:net::DnsConfig
160 // Immediately attempts to read the current configuration.
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
H A Dcommitannouncer.py109 attempts = 1
110 while attempts <= retry_attempts:
111 if attempts > 1:
115 wait = int(update_wait_seconds) << (attempts - 1)
121 _log.info('Pull attempt %s out of %s' % (attempts, retry_attempts))
128 attempts += 1
129 _log.error('Exceeded pull attempts')
/external/chromium_org/third_party/skia/experimental/Networking/
H A DSkSockets.cpp97 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/skia/experimental/Networking/
H A DSkSockets.cpp97 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/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_test.py57 attempts: The number of attempts to run if we encountered
76 attempts=3,
93 self._attempts = attempts
96 assert self._attempts > 0, 'Test attempts must be greater than 0'
139 def attempts(self): member in class:PageTest
143 @attempts.setter
144 def attempts(self, count): member in class:PageTest
145 assert self._attempts > 0, 'Test attempts must be greater than 0'
/external/chromium_org/content/test/data/media/
H A Dwebrtc_test_utilities.js121 var attempts = 0;
130 attempts++;
144 } else if (attempts == 5) {
/external/chromium_org/third_party/android_testrunner/
H A Dadb_interface.py407 attempts = 0
409 while not success and (attempts*wait_period) < wait_time:
424 attempts += 1
444 attempts = 0
446 while not boot_complete and (attempts*wait_period) < wait_time:
453 attempts += 1
/external/chromium_org/components/translate/content/browser/
H A Dcontent_translate_driver.h60 // Number of attempts before waiting for a page to be fully reloaded.
61 void set_translate_max_reload_attempts(int attempts) { argument
62 max_reload_check_attempts_ = attempts;
114 // Max number of attempts before checking if a page has been reloaded.
/external/chromium_org/remoting/protocol/
H A Dchromium_socket_factory_unittest.cc46 int attempts = 0; local
48 while (last_packet_.empty() && attempts++ < kMaxAttempts) {
/external/chromium_org/sandbox/win/src/
H A Dsandbox_nt_util.cc32 int attempts = 0; local
33 for (; attempts < 41; attempts++) {
47 if (attempts == 30) {
50 } else if (attempts == 40) {
60 if (attempts == 41)
/external/chromium_org/chrome/browser/net/
H A Ddns_probe_service.cc142 system_config.attempts = 1;
155 public_config.attempts = 1;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dtools_common.sh298 When the --bin-path option is not specified the script attempts to use
301 When the --config-path option is not specified the script attempts to use
304 When the -test-data-path option is not specified the script attempts to use
/external/chromium_org/v8/src/base/platform/
H A Dplatform-cygwin.cc187 for (size_t attempts = 0; base == NULL && attempts < 3; ++attempts) {
192 // After three attempts give up and let the OS find an address to use.
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java580 for (int attempts = 0; attempts < size * (size - 1); attempts++) {
595 for (int attempts = 0; attempts < size * (size - 1); attempts++) {
609 for (int attempts = 0; attempts < 5000; attempts++) {
641 for (int attempts
[all...]
/external/libvpx/libvpx/test/
H A Dtools_common.sh341 When the --bin-path option is not specified the script attempts to use
344 When the --config-path option is not specified the script attempts to use
347 When the -test-data-path option is not specified the script attempts to use
/external/chromium_org/content/test/gpu/gpu_tests/
H A Dwebgl_conformance.py69 super(WebglConformanceValidator, self).__init__(attempts=1, max_failures=10)
/external/chromium_org/v8/test/cctest/
H A Dtest-alloc.cc39 static int attempts = 0; local
41 if (++attempts < 3) return AllocationResult::Retry();
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_client.c31 * Maximum number of retransmit attempts before the entry is removed from
47 * The number of failed retry attempts after which the RADIUS server will be
113 * attempts - Number of transmission attempts
115 int attempts; member in struct:radius_msg_list
340 if (entry->attempts == 0)
348 if (entry->attempts == 0)
356 /* retransmit; remove entry if too many attempts */
357 entry->attempts++;
374 if (entry->attempts >
[all...]

Completed in 3238 milliseconds

123