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

1 2 3 4 5

  /external/chromium_org/cc/base/
util_unittest.cc 17 for (int attempt = 5 * multiplier; attempt >= -5 * multiplier; --attempt) {
18 if ((attempt % multiplier) == 0)
19 correct = attempt;
20 EXPECT_EQ(correct, RoundUp(attempt, multiplier))
21 << "attempt=" << attempt << " multiplier=" << multiplier;
29 for (unsigned attempt = 5 * multiplier; attempt > 0; --attempt)
    [all...]
  /external/clang/test/CodeGenCXX/
windows-itanium-exceptions.cpp 9 void attempt() { function
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DefaultNamingPolicy.java 44 String attempt = base; local
46 while (names.evaluate(attempt))
47 attempt = base + "_" + index++;
48 return attempt;
  /external/chromium_org/chromeos/login/auth/
cryptohome_authenticator.cc 56 void TriggerResolve(AuthAttemptState* attempt,
60 attempt->RecordCryptohomeStatus(success, return_code);
65 void TriggerResolveHash(AuthAttemptState* attempt,
70 attempt->RecordUsernameHash(username_hash);
72 attempt->RecordUsernameHashFailed();
79 AuthAttemptState* attempt,
84 TriggerResolve(attempt, resolver, success, return_code);
89 void RecordKeyErrorAndResolve(AuthAttemptState* attempt,
93 attempt->RecordCryptohomeStatus(false /* success */,
99 void OnMount(AuthAttemptState* attempt,
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/supervised/
supervised_user_authenticator.cc 29 void TriggerResolve(SupervisedUserAuthenticator::AuthAttempt* attempt,
34 attempt->RecordCryptohomeStatus(success, return_code);
39 void TriggerResolveResult(SupervisedUserAuthenticator::AuthAttempt* attempt,
44 attempt->RecordHash(result);
51 SupervisedUserAuthenticator::AuthAttempt* attempt,
56 TriggerResolve(attempt, resolver, success, return_code);
60 void Mount(SupervisedUserAuthenticator::AuthAttempt* attempt,
68 Key key(attempt->password);
71 attempt->username,
76 attempt,
    [all...]
  /external/chromium_org/net/dns/
dns_session.h 71 // Return the index of the first configured server to use on first attempt.
75 // to use on this attempt. Returns |server_index| if this server has no
90 void RecordLostPacket(unsigned server_index, int attempt);
95 // Return the timeout for the next query. |attempt| counts from 0 and is used
97 base::TimeDelta NextTimeout(unsigned server_index, int attempt);
118 base::TimeDelta NextTimeoutFromJacobson(unsigned server_index, int attempt);
121 base::TimeDelta NextTimeoutFromHistogram(unsigned server_index, int attempt);
dns_transaction.cc 80 // Starts the attempt. Returns ERR_IO_PENDING if cannot complete synchronously
84 // Returns the query of this attempt.
114 // True if current attempt is pending (waiting for server response).
119 // True if attempt is completed (received server response).
259 // Our solution is to make another attempt, in case the query truly
260 // failed, but keep this attempt alive, in case it was a false alarm.
543 // The first server to attempt on each query is given by
611 AttemptResult(int rv, const DnsAttempt* attempt)
612 : rv(rv), attempt(attempt) {}
615 const DnsAttempt* attempt; member in struct:net::__anon13827::DnsTransactionImpl::AttemptResult
718 DnsUDPAttempt* attempt = local
763 DnsTCPAttempt* attempt = new DnsTCPAttempt(server_index, socket.Pass(), local
802 const DnsAttempt* attempt = attempts_[attempt_number]; local
814 const DnsAttempt* attempt = attempts_[attempt_number]; local
    [all...]
dns_session.cc 163 // For measurement, assume it is the first attempt (no backoff).
189 void DnsSession::RecordLostPacket(unsigned server_index, int attempt) {
191 NextTimeoutFromJacobson(server_index, attempt);
193 NextTimeoutFromHistogram(server_index, attempt);
213 base::TimeDelta DnsSession::NextTimeout(unsigned server_index, int attempt) {
217 return NextTimeoutFromHistogram(server_index, attempt);
252 int attempt) {
261 unsigned num_backoffs = attempt / config_.nameservers.size();
268 int attempt) {
292 unsigned num_backoffs = attempt / config_.nameservers.size()
    [all...]
  /external/chromium_org/v8/test/webkit/
sort-randomly.js 28 for (var attempt = 0; attempt < 100; ++attempt) {
40 for (var attempt = 0; attempt < 100; ++attempt) {
  /external/chromium_org/net/base/
keygen_handler_win.cc 169 int attempt; local
170 for (attempt = 0; attempt < kMaxAttempts; ++attempt) {
192 if (attempt == kMaxAttempts) {
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
random.c 252 size_t done, todo, attempt; local
287 for (attempt = 0;; attempt++) {
293 SHA512_Update(&sha, &attempt, sizeof(attempt));
  /external/chromium_org/chrome/browser/
process_singleton_browsertest.cc 137 // and thus we must manually reset it for each attempt.
230 for (size_t attempt = 0; attempt < kNbAttempts && !failed; ++attempt) {
231 SCOPED_TRACE(testing::Message() << "Attempt: " << attempt << ".");
247 bool first_run = attempt % 2;
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 104 for (int attempt = 0; attempt < 10; ++attempt) {
109 attempt = 0;
  /external/chromium_org/components/translate/content/browser/
content_translate_driver.cc 54 int attempt) {
62 if (web_contents()->IsLoading() && attempt < max_reload_check_attempts_) {
63 int backoff = attempt * kMaxTranslateLoadCheckAttempts;
69 attempt + 1),
content_translate_driver.h 71 void InitiateTranslation(const std::string& page_lang, int attempt);
  /external/chromium_org/content/test/data/dom_storage/
sanity_check.js 66 "ex.code != 22 for attempt to store a very large value");
73 "ex.code != 22 for attempt to store a very large key");
  /external/chromium_org/remoting/host/
clipboard_win.cc 50 for (int attempt = 0; attempt < kMaxAttemptsToOpenClipboard; ++attempt) {
51 if (attempt > 0) {
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/automated/
vie_video_verification_test.cc 227 for (int attempt = 0; attempt < kNumAttempts; ++attempt) {
246 ViETest::Log("Retrying; attempt %d of %d.", attempt + 1, kNumAttempts);
  /external/bluetooth/bluedroid/stack/btm/
btm_pm.c 503 p_res->attempt = (p_md1->attempt > p_md2->attempt)? (p_md1->attempt) : (p_md2->attempt);
665 md_res.max, md_res.min, md_res.attempt,
    [all...]
  /external/chromium_org/ppapi/native_client/tools/browser_tester/
browser_tester.py 339 # to fail). server_close() does not attempt to tell the server
357 attempt = 1
375 if attempt < 2:
378 attempt += 1
  /external/chromium_org/tools/
check_git_config.py 14 of the push attempt to the server (on appengine), so that chrome-infra team can
49 # Do not attempt to upload a report after this date.
345 attempt = 0
346 while attempt < 5:
347 attempt += 1
443 print 'Status of git push attempt:'
459 attempt = 0
461 while not success and attempt < 10:
462 attempt += 1
516 # Do not attempt to push from non-google owned machines
    [all...]
  /external/chromium_org/tools/grit/grit/
exception.py 91 '''Attempt to add an invalid translation to a clique.'''
101 '''Attempt to use an object before it is ready, or attempt to translate
  /external/libunwind/doc/
unw_set_fpreg.tex 52 \item[\Const{UNW\_EBADREG}] An attempt was made to write a register
54 \item[\Const{UNW\_EREADONLY}] An attempt was made to write to a
unw_set_reg.tex 53 \item[\Const{UNW\_EBADREG}] An attempt was made to write a register
55 \item[\Const{UNW\_EREADONLY}] An attempt was made to write to a
  /external/chromium_org/chrome/browser/resources/gaia_auth/
offline.js 51 // Email is present, which means that unsuccessful login attempt has been

Completed in 1714 milliseconds

1 2 3 4 5