Searched refs:attempt (Results 1 - 25 of 75) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A Dwindows-itanium-exceptions.cpp9 void attempt() { function
/external/chromium_org/cc/base/
H A Dutil_unittest.cc17 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 >
[all...]
/external/chromium_org/v8/test/webkit/
H A Dsort-randomly.js28 for (var attempt = 0; attempt < 100; ++attempt) {
40 for (var attempt = 0; attempt < 100; ++attempt) {
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DDefaultNamingPolicy.java44 String attempt = base;
46 while (names.evaluate(attempt))
47 attempt = base + "_" + index++;
48 return attempt;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DClassCacheTest.java30 TestThreadIsWriting attempt = new TestThreadIsWriting(classCache);
36 attempt.start();
38 attempt.join(timeToWait, 0);
40 Assert.assertEquals(false, attempt.ready);
69 TestThreadSaveAllClassesToCache attempt = new TestThreadSaveAllClassesToCache(classCache);
75 attempt.start();
77 attempt.join(timeToWait, 0);
79 Assert.assertEquals(false, attempt.ready);
/external/valgrind/main/memcheck/tests/
H A Dfile_locking.stderr.exp2 parent: file locking attempt succeeded.
/external/chromium_org/chrome/browser/chromeos/login/auth/
H A Dparallel_authenticator.cc50 void TriggerResolve(AuthAttemptState* attempt, argument
55 attempt->RecordCryptohomeStatus(success, return_code);
60 void TriggerResolveHash(AuthAttemptState* attempt, argument
66 attempt->RecordUsernameHash(username_hash);
68 attempt->RecordUsernameHashFailed();
75 AuthAttemptState* attempt,
80 TriggerResolve(attempt, resolver, success, return_code);
84 void Mount(AuthAttemptState* attempt, argument
93 attempt->UsernameHashRequested();
96 TransformKeyIfNeeded(*attempt
73 TriggerResolveWithLoginTimeMarker( const std::string& marker_name, AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver, bool success, cryptohome::MountError return_code) argument
113 MountGuest(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver) argument
125 MountGuestAndGetHash(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver) argument
142 MountPublic(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver, int flags) argument
161 Migrate(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver, bool passing_old_hash, const std::string& old_password, const std::string& system_salt) argument
198 Remove(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver) argument
212 CheckKey(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver, const std::string& system_salt) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/login/managed/
H A Dmanaged_user_authenticator.cc29 void TriggerResolve(ManagedUserAuthenticator::AuthAttempt* attempt, argument
34 attempt->RecordCryptohomeStatus(success, return_code);
39 void TriggerResolveResult(ManagedUserAuthenticator::AuthAttempt* attempt, argument
44 attempt->RecordHash(result);
51 ManagedUserAuthenticator::AuthAttempt* attempt,
56 TriggerResolve(attempt, resolver, success, return_code);
60 void Mount(ManagedUserAuthenticator::AuthAttempt* attempt, argument
68 Key key(attempt->password);
71 attempt->username,
76 attempt,
49 TriggerResolveWithLoginTimeMarker( const std::string& marker_name, ManagedUserAuthenticator::AuthAttempt* attempt, scoped_refptr<ManagedUserAuthenticator> resolver, bool success, cryptohome::MountError return_code) argument
85 AddKey(ManagedUserAuthenticator::AuthAttempt* attempt, scoped_refptr<ManagedUserAuthenticator> resolver, const std::string& plain_text_master_key, const std::string& system_salt) argument
[all...]
/external/chromium_org/net/dns/
H A Ddns_session.h71 // 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);
H A Ddns_transaction.cc80 // 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.
514 // The first server to attempt on each query is given by
582 AttemptResult(int rv, const DnsAttempt* attempt) argument
583 : rv(rv), attempt(attempt) {}
586 const DnsAttempt* attempt; member in struct:net::__anon8600::DnsTransactionImpl::AttemptResult
689 DnsUDPAttempt* attempt = local
734 DnsTCPAttempt* attempt = new DnsTCPAttempt(server_index, socket.Pass(), local
773 const DnsAttempt* attempt = attempts_[attempt_number]; local
785 const DnsAttempt* attempt = attempts_[attempt_number]; local
817 LogResponse(const DnsAttempt* attempt) argument
[all...]
H A Ddns_session.cc163 // For measurement, assume it is the first attempt (no backoff).
189 void DnsSession::RecordLostPacket(unsigned server_index, int attempt) { argument
191 NextTimeoutFromJacobson(server_index, attempt);
193 NextTimeoutFromHistogram(server_index, attempt);
213 base::TimeDelta DnsSession::NextTimeout(unsigned server_index, int attempt) { argument
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
251 NextTimeoutFromJacobson(unsigned server_index, int attempt) argument
267 NextTimeoutFromHistogram(unsigned server_index, int attempt) argument
[all...]
/external/chromium_org/net/base/
H A Dkeygen_handler_win.cc168 int attempt; local
169 for (attempt = 0; attempt < kMaxAttempts; ++attempt) {
191 if (attempt == kMaxAttempts) {
/external/chromium_org/chrome/browser/
H A Dprocess_singleton_browsertest.cc137 // 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;
/external/chromium_org/remoting/host/
H A Dclipboard_win.cc50 for (int attempt = 0; attempt < kMaxAttemptsToOpenClipboard; ++attempt) {
51 if (attempt > 0) {
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/automated/
H A Dvie_video_verification_test.cc227 for (int attempt = 0; attempt < kNumAttempts; ++attempt) {
246 ViETest::Log("Retrying; attempt %d of %d.", attempt + 1, kNumAttempts);
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_pm.c503 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,
/external/chromium_org/ppapi/native_client/tools/browser_tester/
H A Dbrowser_tester.py339 # to fail). server_close() does not attempt to tell the server
357 attempt = 1
375 if attempt < 2:
378 attempt += 1
/external/chromium_org/chrome/browser/translate/
H A Dchrome_translate_client.cc357 // Else, we don't have the data file yet. Queue a caching attempt.
358 // The caching attempt happens in the blocking pool because it may involve
360 // After the caching attempt is made, we call MaybeSendCLDDataAvailable
362 // message if the caching attempt was successful.
472 int attempt) {
480 if (web_contents()->IsLoading() && attempt < max_reload_check_attempts_) {
481 int backoff = attempt * kMaxTranslateLoadCheckAttempts;
487 ++attempt),
471 InitiateTranslation(const std::string& page_lang, int attempt) argument
/external/libunwind/doc/
H A Dunw_set_fpreg.tex52 \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
H A Dunw_set_reg.tex53 \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
H A Dunw_is_fpreg.tex23 should not attempt to take its address.
/external/wpa_supplicant_8/hostapd/src/eapol_supp/
H A Deapol_supp_sm.h177 * aborted_cached - Notify that cached PMK attempt was aborted
291 void eapol_sm_notify_pmkid_attempt(struct eapol_sm *sm, int attempt);
369 #define eapol_sm_notify_pmkid_attempt(sm, attempt) do { } while (0)
/external/wpa_supplicant_8/src/eapol_supp/
H A Deapol_supp_sm.h177 * aborted_cached - Notify that cached PMK attempt was aborted
291 void eapol_sm_notify_pmkid_attempt(struct eapol_sm *sm, int attempt);
369 #define eapol_sm_notify_pmkid_attempt(sm, attempt) do { } while (0)
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_supp/
H A Deapol_supp_sm.h177 * aborted_cached - Notify that cached PMK attempt was aborted
291 void eapol_sm_notify_pmkid_attempt(struct eapol_sm *sm, int attempt);
369 #define eapol_sm_notify_pmkid_attempt(sm, attempt) do { } while (0)
/external/chromium_org/third_party/icu/source/common/
H A Dcaniter.cpp380 UnicodeString attempt; local
381 nfd.normalize(possible, attempt, status);
383 // TODO: check if operator == is semanticaly the same as attempt.equals(segment)
384 if (attempt==segment) {

Completed in 623 milliseconds

123