HomeSort by relevance Sort by last modified time
    Searched refs:attempts (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
HLSLCompiler.h 29 const UINT optimizationFlags[], const char *flagNames[], int attempts) const;
HLSLCompiler.cpp 69 const UINT optimizationFlags[], const char *flagNames[], int attempts) const
79 for (int i = 0; i < attempts; ++i)
111 if (i + 1 < attempts)
  /system/extras/tests/sdcard/
sysutil.cpp 97 int attempts = 0; local
101 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
124 ++attempts;
163 int attempts = 0; local
165 while (size > 0 && !error && attempts < kMaxAttempts)
182 ++attempts;
449 int attempts = 0; local
451 while (size > 0 && !error && attempts < kMaxAttempts)
468 ++attempts;
480 attempts = 0
524 int attempts; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/
ReconnectionManager.java 93 * 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/
simple_geolocation_unittest.cc 90 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_retries - 1)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/timezone/
timezone_unittest.cc 128 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_retries - 1)
    [all...]
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
KeyEventAction.java 82 for (int attempts = 0; !injected && attempts < 4; attempts++) {
98 for (int attempts = 0; !injected && attempts < 4; attempts++) {
  /libcore/luni/src/main/java/java/io/
PipedInputStream.java 225 int attempts = 3; local
231 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
303 int attempts = 3; local
309 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
  /external/chromium_org/net/dns/
dns_config_service.cc 104 attempts(2),
122 (attempts == d.attempts) &&
135 attempts = d.attempts;
158 dict->SetInteger("attempts", attempts);
dns_config_service.h 112 // Maximum number of attempts, see res_state.retry.
113 int attempts; member in struct:net::DnsConfig
140 // Attempts to read the configuration. Will run |callback| when succeeded.
160 // Immediately attempts to read the current configuration.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
commitannouncer.py 109 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/
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/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/chromium_org/tools/telemetry/telemetry/page/
page_test.py 32 attempts=3,
50 self._attempts = attempts
54 assert self._attempts > 0, 'Test attempts must be greater than 0'
97 def attempts(self): member in class:PageTest
101 @attempts.setter
102 def attempts(self, count): member in class:PageTest
103 assert self._attempts > 0, 'Test attempts must be greater than 0'
  /ndk/sources/host-tools/sed-4.2.1/lib/
tempname.c 222 unsigned int attempts = TMP_MAX; local
224 unsigned int attempts = ATTEMPTS_MIN; local
249 for (count = 0; count < attempts; value += 7777, ++count)
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 407 attempts = 0
409 while not success and (attempts*wait_period) < wait_time:
423 attempts += 1
443 attempts = 0
445 while not boot_complete and (attempts*wait_period) < wait_time:
452 attempts += 1
  /external/chromium_org/chrome/browser/translate/
chrome_translate_client.h 86 // Number of attempts before waiting for a page to be fully reloaded.
87 void set_translate_max_reload_attempts(int attempts) {
88 max_reload_check_attempts_ = attempts;
170 // Max number of attempts before checking if a page has been reloaded.
  /external/chromium_org/remoting/jingle_glue/
chromium_socket_factory_unittest.cc 45 int attempts = 0; local
47 while (last_packet_.empty() && attempts++ < kMaxAttempts) {
  /development/testrunner/
adb_interface.py 402 attempts = 0
404 while not success and (attempts*wait_period) < wait_time:
418 attempts += 1
438 attempts = 0
440 while not boot_complete and (attempts*wait_period) < wait_time:
447 attempts += 1
  /external/chromium_org/chrome/browser/net/
dns_probe_service.cc 142 system_config.attempts = 1;
155 public_config.attempts = 1;
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardAbsKeyInputView.java 111 // to avoid accidental lockout, only count attempts that are long enough to be a
114 int attempts = KeyguardUpdateMonitor.getInstance(mContext).getFailedUnlockAttempts(); local
115 if (0 == (attempts % LockPatternUtils.FAILED_ATTEMPTS_BEFORE_TIMEOUT)) {
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 296 int attempts = 1; local
318 attempts++;
329 } while (b == null && attempts < NUMBER_OF_RESIZE_ATTEMPTS);
333 && attempts >= NUMBER_OF_RESIZE_ATTEMPTS) {
334 Log.v(TAG, "getResizedImageData: gave up after too many attempts to resize");
340 attempts = 1; // reset count for second loop
406 Log.v(TAG, "attempt=" + attempts
414 attempts++;
416 } while (resultTooBig && attempts < NUMBER_OF_RESIZE_ATTEMPTS);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
tools_common.sh 347 When the --bin-path option is not specified the script attempts to use
350 When the --config-path option is not specified the script attempts to use
353 When the -test-data-path option is not specified the script attempts to use
  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 580 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 = 0; attempts < 5000; attempts++)
    [all...]
  /external/libvpx/libvpx/test/
tools_common.sh 341 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

Completed in 927 milliseconds

1 2 3 4 5