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

1 2 3 4 5

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
HLSLCompiler.h 27 const UINT optimizationFlags[], const char *flagNames[], int attempts) const;
HLSLCompiler.cpp 74 const UINT optimizationFlags[], const char *flagNames[], int attempts) const
84 for (int i = 0; i < attempts; ++i)
115 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...]
  /external/chromium_org/v8/src/compiler/
graph-reducer.cc 28 for (unsigned attempts = 0; attempts <= kMaxAttempts; ++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/components/translate/content/browser/
content_translate_driver.h 60 // Number of attempts before waiting for a page to be fully reloaded.
61 void set_translate_max_reload_attempts(int attempts) {
62 max_reload_check_attempts_ = attempts;
114 // Max number of attempts before checking if a page has been reloaded.
  /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 57 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'
  /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:
424 attempts += 1
444 attempts = 0
446 while not boot_complete and (attempts*wait_period) < wait_time:
453 attempts += 1
  /external/chromium_org/remoting/protocol/
chromium_socket_factory_unittest.cc 46 int attempts = 0; local
48 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)) {
KeyguardSecurityContainer.java 226 private void showAlmostAtWipeDialog(int attempts, int remaining, int userType) {
231 attempts, remaining);
235 attempts, remaining);
239 attempts, remaining);
245 private void showWipeDialog(int attempts, int userType) {
250 attempts);
254 attempts);
258 attempts);
295 // N attempts. Once we get below the grace period, we post this dialog every time as a
297 // Check which profile has the strictest policy for failed password attempts
    [all...]
  /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 298 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/
platform-cygwin.cc 187 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.

Completed in 1049 milliseconds

1 2 3 4 5