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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/net/ftp/
ftp_auth_cache.h 30 Entry(const GURL& origin, const AuthCredentials& credentials);
34 AuthCredentials credentials; member in struct:net::FtpAuthCache::Entry
43 // Add an entry for |origin| to the cache using |credentials|. If there is
45 void Add(const GURL& origin, const AuthCredentials& credentials);
48 // |credentials|.
49 void Remove(const GURL& origin, const AuthCredentials& credentials);
ftp_auth_cache.cc 16 const AuthCredentials& credentials)
18 credentials(credentials) {
35 void FtpAuthCache::Add(const GURL& origin, const AuthCredentials& credentials) {
41 entry->credentials = credentials;
43 entries_.push_front(Entry(origin, credentials));
52 const AuthCredentials& credentials) {
54 if (it->origin == origin && it->credentials.Equals(credentials)) {
    [all...]
ftp_transaction.h 45 // Restarts the FTP transaction with authentication credentials.
46 virtual int RestartWithAuth(const AuthCredentials& credentials,
  /external/apache-http/src/org/apache/http/auth/
AuthState.java 50 /** Credentials selected for authentication */
51 private Credentials credentials; field in class:AuthState
67 this.credentials = null;
98 * Returns user {@link Credentials} selected for authentication if available
100 * @return user credentials if available, <code>null</code otherwise
102 public Credentials getCredentials() {
103 return this.credentials;
108 * Sets user {@link Credentials} to be used for authentication
110 * @param credentials User credential
    [all...]
AuthScheme.java 51 * <li>Generate authorization string for the given set of credentials,
128 * Produces an authorization string for the given set of {@link Credentials}.
130 * @param credentials The set of credentials to be used for athentication
137 Header authenticate(Credentials credentials, HttpRequest request)
  /external/chromium/chrome/browser/password_manager/
password_form_manager_unittest.cc 77 // User submits credentials for the observed form.
78 PasswordForm credentials = *observed_form(); local
79 credentials.username_value = saved_match()->username_value;
80 credentials.password_value = saved_match()->password_value;
81 credentials.preferred = true;
82 manager->ProvisionallySave(credentials);
87 // Make sure the credentials that would be submitted on successful login
106 credentials.username_value = new_user;
107 credentials.password_value = new_pass;
108 manager->ProvisionallySave(credentials);
139 PasswordForm credentials = *observed_form(); local
202 PasswordForm credentials = *observed_form(); local
208 PasswordFormManager manager1(profile(), NULL, credentials, false); local
214 PasswordFormManager manager2(profile(), NULL, credentials, false); local
221 PasswordFormManager manager3(profile(), NULL, credentials, false); local
228 PasswordFormManager manager4(profile(), NULL, credentials, false); local
235 PasswordForm credentials = *observed_form(); local
241 PasswordFormManager manager1(profile(), NULL, credentials, false); local
247 PasswordFormManager manager2(profile(), NULL, credentials, false); local
254 PasswordFormManager manager3(profile(), NULL, credentials, false); local
261 PasswordFormManager manager4(profile(), NULL, credentials, false); local
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 37 import org.apache.http.auth.Credentials;
119 * Produces basic authorization header for the given set of {@link Credentials}.
121 * @param credentials The set of credentials to be used for athentication
123 * @throws org.apache.http.auth.InvalidCredentialsException if authentication credentials
131 final Credentials credentials,
134 if (credentials == null) {
135 throw new IllegalArgumentException("Credentials may not be null");
142 return authenticate(credentials, charset, isProxy())
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_form_manager_unittest.cc 161 // User submits credentials for the observed form.
162 PasswordForm credentials = *observed_form(); local
163 credentials.username_value = saved_match()->username_value;
164 credentials.password_value = saved_match()->password_value;
165 credentials.preferred = true;
167 credentials,
173 // Make sure the credentials that would be submitted on successful login
194 credentials.username_value = new_user;
195 credentials.password_value = new_pass;
197 credentials,
229 PasswordForm credentials = *observed_form(); local
411 PasswordForm credentials = *observed_form(); local
417 PasswordFormManager manager1(profile(), NULL, NULL, credentials, false); local
423 PasswordFormManager manager2(profile(), NULL, NULL, credentials, false); local
430 PasswordFormManager manager3(profile(), NULL, NULL, credentials, false); local
437 PasswordFormManager manager4(profile(), NULL, NULL, credentials, false); local
444 PasswordForm credentials = *observed_form(); local
450 PasswordFormManager manager1(profile(), NULL, NULL, credentials, false); local
456 PasswordFormManager manager2(profile(), NULL, NULL, credentials, false); local
463 PasswordFormManager manager3(profile(), NULL, NULL, credentials, false); local
470 PasswordFormManager manager4(profile(), NULL, NULL, credentials, false); local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
form_based_credentials_backend_unittest_base.py 20 '..', '..', '..', '..', 'perf', 'data', 'credentials.json')
34 logging.warning('Credentials file not found, skipping test.')
40 b.credentials.credentials_path = credentials_path
41 if not b.credentials.CanLogin(self._credentials_type):
43 ret = b.credentials.LoginNeeded(b.tabs[0], self._credentials_type)
50 logging.warning('Credentials file not found, skipping test.')
58 b.credentials.credentials_path = credentials_path
60 if not b.credentials.CanLogin(self._credentials_type):
65 # Should not be logged in, since this is a fresh credentials
67 self.assertFalse(b.credentials.IsLoggedIn(self._credentials_type)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
credentials_unittest.py 32 from webkitpy.common.net.credentials import Credentials
55 # Note: All tests should use this class instead of Credentials directly to avoid using a real Executive.
56 class MockedCredentials(Credentials):
60 Credentials.__init__(self, *args, **kwargs)
94 credentials = FakeCredentials("bugs.webkit.org")
95 self.assertFalse(credentials._is_mac_os_x())
96 self.assertEqual(credentials._credentials_from_keychain("foo"), ["foo", None])
99 credentials = MockedCredentials("bugs.webkit.org")
100 self.assertEqual(credentials._parse_security_tool_output(self.example_security_output), ["test@webkit.org", "SECRETSAUCE"]
155 credentials = FakeCredentials("bugs.webkit.org", cwd=temp_dir_path) variable in class:CredentialsTest.test_read_credentials_without_git_repo.FakeCredentials
178 credentials = FakeCredentials("fake.hostname", cwd=temp_dir_path, keyring=MockKeyring()) variable in class:CredentialsTest.test_keyring_without_git_repo.FakeCredentials
205 credentials = FakeCredentials("fake.hostname", cwd=temp_dir_path, keyring=MockKeyring()) variable in class:CredentialsTest.test_keyring_without_git_repo_nor_keychain.FakeUser
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
login_utils.h 54 const GaiaAuthConsumer::ClientLoginResult& credentials,
74 // Given the credentials try to exchange them for
78 const GaiaAuthConsumer::ClientLoginResult& credentials) = 0;
80 // Supply credentials for sync and others to use.
83 const GaiaAuthConsumer::ClientLoginResult& credentials) = 0;
online_attempt.h 48 const GaiaAuthConsumer::ClientLoginResult& credentials);
57 void TriggerResolve(const GaiaAuthConsumer::ClientLoginResult& credentials,
mock_login_status_consumer.h 46 const GaiaAuthConsumer::ClientLoginResult& credentials,
54 const GaiaAuthConsumer::ClientLoginResult& credentials,
72 const GaiaAuthConsumer::ClientLoginResult& credentials) {
77 const GaiaAuthConsumer::ClientLoginResult& credentials) {
cookie_fetcher.cc 30 void CookieFetcher::AttemptFetch(const std::string& credentials) {
32 fetcher_.reset(client_login_handler_->Handle(credentials, this));
test_attempt_state.cc 36 const GaiaAuthConsumer::ClientLoginResult& credentials,
40 credentials_ = credentials;
test_attempt_state.h 32 const GaiaAuthConsumer::ClientLoginResult& credentials,
44 virtual const GaiaAuthConsumer::ClientLoginResult& credentials() { function in class:chromeos::TestAttemptState
authenticator.h 53 // |credentials| are the tokens that we get back from the ClientLogin API.
58 const GaiaAuthConsumer::ClientLoginResult& credentials,
74 const GaiaAuthConsumer::ClientLoginResult& credentials) = 0;
80 const GaiaAuthConsumer::ClientLoginResult& credentials) = 0;
mock_authenticator.h 65 void OnLoginSuccess(const GaiaAuthConsumer::ClientLoginResult& credentials,
71 credentials,
84 const GaiaAuthConsumer::ClientLoginResult& credentials) {}
87 const GaiaAuthConsumer::ClientLoginResult& credentials) {}
141 const GaiaAuthConsumer::ClientLoginResult& credentials) {
146 const GaiaAuthConsumer::ClientLoginResult& credentials) {
  /external/chromium_org/chrome/browser/chromeos/login/
test_login_utils.cc 21 const UserContext& credentials,
27 DCHECK_EQ(expected_username_, credentials.username);
28 DCHECK_EQ(expected_password_, credentials.password);
  /external/apache-http/src/org/apache/http/client/
CredentialsProvider.java 34 import org.apache.http.auth.Credentials;
37 * Abstract credentials provider.
46 * Sets the {@link Credentials credentials} for the given authentication
47 * scope. Any previous credentials for the given scope will be overwritten.
50 * @param credentials the authentication {@link Credentials credentials}
55 void setCredentials(AuthScope authscope, Credentials credentials);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
CrossOriginPreflightResultCache.h 45 CrossOriginPreflightResultCacheItem(StoredCredentials credentials)
47 , m_credentials(credentials)
  /external/chromium_org/net/http/
http_auth_handler_basic.cc 89 const AuthCredentials* credentials, const HttpRequestInfo*,
91 DCHECK(credentials);
95 UTF16ToUTF8(credentials->username()) + ":" +
96 UTF16ToUTF8(credentials->password()),
http_auth_handler_ntlm.cc 32 const AuthCredentials* credentials, const HttpRequestInfo* request,
36 credentials,
41 if (!credentials) {
57 const base::string16& username = credentials->username();
67 credentials_.Set(user, credentials->password());
http_auth_cache.h 67 // |credentials| - login information for the realm.
75 const AuthCredentials& credentials,
79 // if one exists AND if the cached credentials matches |credentials|.
83 // |credentials| - the credentials to match.
88 const AuthCredentials& credentials);
132 // The login credentials.
133 const AuthCredentials& credentials() const { function in class:net::HttpAuthCache::Entry
  /external/chromium_org/chrome/test/functional/
chromeos_oobe.py 60 credentials = self.GetPrivateInfo()['test_google_account']
61 self.Login(credentials['username'], credentials['password'])

Completed in 1169 milliseconds

1 2 3 4 5 6 7 8 910