Searched defs:attempt (Results 1 - 25 of 26) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dmain.rb225 def attempt( lib, message = nil, exit_status = nil ) method in class:ANTLR3.Main.Main
/external/chromium/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/net/base/
H A Dkeygen_handler_win.cc168 int attempt; local
169 for (attempt = 0; attempt < kMaxAttempts; ++attempt) {
191 if (attempt == kMaxAttempts) {
/external/openssh/
H A Dauth.h54 int attempt; member in struct:Authctxt
H A Dsshconnect.c343 int sock = -1, attempt; local
363 for (attempt = 0; attempt < connection_attempts; attempt++) {
364 if (attempt > 0) {
H A Dsshconnect2.c866 static int attempt = 0; local
872 if (attempt++ >= options.number_of_password_prompts)
875 if (attempt != 1)
1491 static int attempt = 0; local
1493 if (attempt++ >= options.number_of_password_prompts)
1496 if (attempt > 1 && !authctxt->info_req_seen) {
1750 static int attempt = 0; /* XXX share with userauth_password's? */ local
1752 if (attempt++ >= options.number_of_password_prompts)
1754 if (attempt != 1)
/external/chromium_org/chrome/browser/chromeos/login/managed/
H A Dmanaged_user_authenticator.cc26 // Milliseconds until we timeout our attempt to hit ClientLogin.
33 void TriggerResolve(ManagedUserAuthenticator::AuthAttempt* attempt, argument
38 attempt->RecordCryptohomeStatus(success, return_code);
43 void TriggerResolveResult(ManagedUserAuthenticator::AuthAttempt* attempt, argument
48 attempt->RecordHash(result);
55 ManagedUserAuthenticator::AuthAttempt* attempt,
60 TriggerResolve(attempt, resolver, success, return_code);
64 void Mount(ManagedUserAuthenticator::AuthAttempt* attempt, argument
71 attempt->username,
72 attempt
53 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& hashed_master_key) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/login/
H A Dparallel_authenticator.h37 // and then call Resolve(). Resolve() will attempt to
197 // Sets an online attempt for testing.
198 void set_online_attempt(OnlineAttempt* attempt) { argument
199 current_online_.reset(attempt);
H A Dparallel_authenticator.cc42 void TriggerResolve(AuthAttemptState* attempt, argument
47 attempt->RecordCryptohomeStatus(success, return_code);
52 void TriggerResolveHash(AuthAttemptState* attempt, argument
57 attempt->RecordUsernameHash(username_hash);
64 AuthAttemptState* attempt,
69 TriggerResolve(attempt, resolver, success, return_code);
73 void Mount(AuthAttemptState* attempt, argument
81 attempt->UsernameHashRequested();
83 attempt->user_context.username,
84 attempt
62 TriggerResolveWithLoginTimeMarker( const std::string& marker_name, AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver, bool success, cryptohome::MountError return_code) argument
98 MountGuest(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver) argument
109 Migrate(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver, bool passing_old_hash, const std::string& hash) argument
140 Remove(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver) argument
154 CheckKey(AuthAttemptState* attempt, scoped_refptr<ParallelAuthenticator> resolver) argument
[all...]
/external/chromium_org/net/dns/
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...]
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.
513 // The first server to attempt on each query is given by
581 AttemptResult(int rv, const DnsAttempt* attempt) argument
582 : rv(rv), attempt(attempt) {}
585 const DnsAttempt* attempt; member in struct:net::__anon8684::DnsTransactionImpl::AttemptResult
688 DnsUDPAttempt* attempt = local
733 DnsTCPAttempt* attempt = new DnsTCPAttempt(server_index, socket.Pass(), local
772 const DnsAttempt* attempt = attempts_[attempt_number]; local
784 const DnsAttempt* attempt = attempts_[attempt_number]; local
816 LogResponse(const DnsAttempt* attempt) argument
[all...]
/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) {
/external/icu4c/common/
H A Dcaniter.cpp381 UnicodeString attempt; local
382 nfd.normalize(possible, attempt, status);
384 // TODO: check if operator == is semanticaly the same as attempt.equals(segment)
385 if (attempt==segment) {
/external/chromium_org/chrome/browser/translate/
H A Dtranslate_manager.cc446 int attempt) {
462 if ((web_contents->IsLoading()) && attempt < kMaxTranslateLoadCheckAttempts) {
463 int backoff = attempt * max_reload_check_attempts_;
467 render_id, page_lang, ++attempt),
443 InitiateTranslationPosted(int process_id, int render_id, const std::string& page_lang, int attempt) argument
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_acl.c1791 UINT16 attempt, UINT16 timeout)
1807 min_period, attempt, timeout))
1790 BTM_SetSniffMode(BD_ADDR remote_bda, UINT16 min_period, UINT16 max_period, UINT16 attempt, UINT16 timeout) argument
/external/wpa_supplicant_8/hostapd/src/eapol_supp/
H A Deapol_supp_sm.c1566 * @attempt: Whether PMKSA caching is tried
1570 void eapol_sm_notify_pmkid_attempt(struct eapol_sm *sm, int attempt) argument
1574 if (attempt) {
/external/wpa_supplicant_8/src/eapol_supp/
H A Deapol_supp_sm.c1566 * @attempt: Whether PMKSA caching is tried
1570 void eapol_sm_notify_pmkid_attempt(struct eapol_sm *sm, int attempt) argument
1574 if (attempt) {
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_supp/
H A Deapol_supp_sm.c1566 * @attempt: Whether PMKSA caching is tried
1570 void eapol_sm_notify_pmkid_attempt(struct eapol_sm *sm, int attempt) argument
1574 if (attempt) {
/external/opencv/cvaux/src/
H A Dcvlee.cpp1479 int attempt = 0; local
1505 attempt = attempt_number;
1512 attempt = attempt_number;
1527 if(++attempt < attempt_number)
/external/bluetooth/bluedroid/stack/include/
H A Dbtm_api.h1801 UINT16 attempt; member in struct:__anon1330
3081 UINT16 max_period, UINT16 attempt,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/qemu/hw/
H A Dbt.h682 uint16_t attempt; member in struct:__anon24676
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 878 milliseconds

12