Searched defs:credentials (Results 26 - 50 of 102) sorted by relevance

12345

/external/chromium_org/chrome/browser/local_discovery/wifi/
H A Dmock_wifi_manager.cc29 const WifiCredentials& credentials,
32 ConfigureAndConnectNetworkInternal(ssid, credentials.psk);
27 ConfigureAndConnectNetwork( const std::string& ssid, const WifiCredentials& credentials, const SuccessCallback& callback) argument
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_win.cc117 std::vector<ie7_password::DecryptedCredentials> credentials; local
121 &credentials)) {
122 for (size_t i = 0; i < credentials.size(); ++i) {
124 autofill->username_value = credentials[i].username;
125 autofill->password_value = credentials[i].password;
/external/chromium_org/components/os_crypt/
H A Die7_password_win.cc56 std::vector<DecryptedCredentials>* credentials) {
86 credentials->push_back(c);
117 std::vector<DecryptedCredentials>* credentials) {
139 GetUserPassFromData(decrypted_data, credentials);
55 GetUserPassFromData(const std::vector<unsigned char>& data, std::vector<DecryptedCredentials>* credentials) argument
115 DecryptPasswords(const std::wstring& url, const std::vector<unsigned char>& data, std::vector<DecryptedCredentials>* credentials) argument
/external/chromium_org/net/base/
H A Dkeygen_handler_mac.cc264 const CSSM_ACCESS_CREDENTIALS* credentials = NULL; local
270 &credentials);
299 credentials,
/external/chromium_org/net/http/
H A Dhttp_auth.h85 // The identity used the default credentials for the computer,
107 AuthCredentials credentials; member in struct:net::HttpAuth::Identity
114 // Get the name of the header where the credentials go
H A Dhttp_auth_handler_mock.cc111 const AuthCredentials* credentials,
110 GenerateAuthTokenImpl( const AuthCredentials* credentials, const HttpRequestInfo* request, const CompletionCallback& callback, std::string* auth_token) argument
H A Dfailing_http_transaction_factory.cc44 const AuthCredentials& credentials,
100 const AuthCredentials& credentials,
99 RestartWithAuth( const AuthCredentials& credentials, const CompletionCallback& callback) argument
H A Dhttp_auth_cache.cc139 const AuthCredentials& credentials,
174 entry->credentials_ = credentials;
238 const AuthCredentials& credentials) {
242 if (credentials.Equals(it->credentials())) {
274 it->auth_challenge(), it->credentials(),
135 Add(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge, const AuthCredentials& credentials, const std::string& path) argument
235 Remove(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const AuthCredentials& credentials) argument
H A Dhttp_auth_handler_digest.cc142 const AuthCredentials* credentials, const HttpRequestInfo* request,
153 *auth_token = AssembleCredentials(method, path, *credentials,
321 const AuthCredentials& credentials,
326 std::string ha1 = base::MD5String(base::UTF16ToUTF8(credentials.username()) +
328 base::UTF16ToUTF8(credentials.password()));
347 const AuthCredentials& credentials,
356 base::UTF16ToUTF8(credentials.username())));
364 std::string response = AssembleResponseDigest(method, path, credentials,
141 GenerateAuthTokenImpl( const AuthCredentials* credentials, const HttpRequestInfo* request, const CompletionCallback& callback, std::string* auth_token) argument
318 AssembleResponseDigest( const std::string& method, const std::string& path, const AuthCredentials& credentials, const std::string& cnonce, const std::string& nc) const argument
344 AssembleCredentials( const std::string& method, const std::string& path, const AuthCredentials& credentials, const std::string& cnonce, int nonce_count) const argument
/external/chromium_org/net/socket/
H A Dunix_domain_client_socket_posix_unittest.cc27 bool allow_user, const UnixDomainServerSocket::Credentials& credentials) {
30 EXPECT_EQ(getpid(), credentials.process_id);
32 EXPECT_EQ(getuid(), credentials.user_id);
33 EXPECT_EQ(getgid(), credentials.group_id);
26 UserCanConnectCallback( bool allow_user, const UnixDomainServerSocket::Credentials& credentials) argument
H A Dunix_domain_server_socket_posix.cc47 Credentials* credentials) {
53 credentials->process_id = user_cred.pid;
54 credentials->user_id = user_cred.uid;
55 credentials->group_id = user_cred.gid;
59 socket, &credentials->user_id, &credentials->group_id) == 0;
175 Credentials credentials; local
176 if (!GetPeerCredentials(accept_socket_->socket_fd(), &credentials) ||
177 !auth_callback_.Run(credentials)) {
46 GetPeerCredentials(SocketDescriptor socket, Credentials* credentials) argument
/external/chromium_org/net/socket_stream/
H A Dsocket_stream_job.cc65 void SocketStreamJob::RestartWithAuth(const AuthCredentials& credentials) { argument
66 socket_->RestartWithAuth(credentials);
/external/chromium_org/sync/internal_api/public/
H A Dsync_manager.h251 SyncCredentials credentials; member in struct:syncer::SyncManager::InitArgs
297 virtual void UpdateCredentials(const SyncCredentials& credentials) = 0;
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DRequest.cpp49 Request* Request::createRequestWithRequestData(ExecutionContext* context, FetchRequestData* request, const RequestInit& init, FetchRequestData::Mode mode, FetchRequestData::Credentials credentials, ExceptionState& exceptionState) argument
66 // "9. Let |credentials| be |init|'s credentials member if it is present,
68 // "10. If |credentials| is non-null, set |request|'s credentials mode to
69 // |credentials|.
70 if (init.credentials == "omit") {
72 } else if (init.credentials == "same-origin") {
74 } else if (init.credentials == "include") {
78 // current credentials i
305 String Request::credentials() const function in class:blink::Request
[all...]
/external/chromium_org/android_webview/browser/net/
H A Daw_network_delegate.cc103 net::AuthCredentials* credentials) {
99 OnAuthRequired( net::URLRequest* request, const net::AuthChallengeInfo& auth_info, const AuthCallback& callback, net::AuthCredentials* credentials) argument
/external/chromium_org/chrome/browser/chromeos/policy/
H A Duser_cloud_policy_store_chromeos_unittest.cc460 em::DeviceCredentials credentials; local
461 credentials.set_device_token(kLegacyToken);
462 credentials.set_device_id(kLegacyDeviceId);
463 ASSERT_TRUE(credentials.SerializeToString(&data));
517 em::DeviceCredentials credentials; local
518 credentials.set_device_token(kLegacyToken);
519 credentials.set_device_id(kLegacyDeviceId);
520 ASSERT_TRUE(credentials.SerializeToString(&data));
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_network_transaction.cc181 const net::AuthCredentials& credentials,
185 int rv = network_transaction_->RestartWithAuth(credentials, proxy_callback_);
180 RestartWithAuth( const net::AuthCredentials& credentials, const net::CompletionCallback& callback) argument
/external/chromium_org/chrome/browser/extensions/updater/
H A Dextension_downloader.h171 // Indicates the type of credentials to include with this fetch.
172 CredentialsMode credentials; member in struct:extensions::ExtensionDownloader::ExtensionFetch
/external/chromium_org/chrome/browser/net/
H A Dchrome_extensions_network_delegate.cc118 net::AuthCredentials* credentials) OVERRIDE;
252 net::AuthCredentials* credentials) {
255 credentials);
354 net::AuthCredentials* credentials) {
248 OnAuthRequired( net::URLRequest* request, const net::AuthChallengeInfo& auth_info, const AuthCallback& callback, net::AuthCredentials* credentials) argument
350 OnAuthRequired( net::URLRequest* request, const net::AuthChallengeInfo& auth_info, const AuthCallback& callback, net::AuthCredentials* credentials) argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_host_core.h34 const syncer::SyncCredentials& credentials,
55 syncer::SyncCredentials credentials; member in struct:browser_sync::DoInitializeOptions
156 void DoUpdateCredentials(const syncer::SyncCredentials& credentials);
H A Dsync_backend_host_mock.cc21 const syncer::SyncCredentials& credentials,
36 const syncer::SyncCredentials& credentials) {}
16 Initialize( sync_driver::SyncFrontend* frontend, scoped_ptr<base::Thread> sync_thread, const syncer::WeakHandle<syncer::JsEventHandler>& event_handler, const GURL& service_url, const syncer::SyncCredentials& credentials, bool delete_sync_data_folder, scoped_ptr<syncer::SyncManagerFactory> sync_manager_factory, scoped_ptr<syncer::UnrecoverableErrorHandler> unrecoverable_error_handler, syncer::ReportUnrecoverableErrorFunction report_unrecoverable_error_function, syncer::NetworkResources* network_resources) argument
35 UpdateCredentials( const syncer::SyncCredentials& credentials) argument
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_auth_request_handler.cc168 std::string* credentials) {
170 DCHECK(credentials);
181 *credentials = base::UTF16ToUTF8(AuthHashForSalt(timestamp, key_));
184 << "password: [" << *credentials << "]"; local
165 ComputeCredentials( const base::Time& now, std::string* session, std::string* credentials) argument
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_form_manager_unittest.cc230 // User submits credentials for the observed form.
231 PasswordForm credentials = *observed_form(); local
232 credentials.username_value = saved_match()->username_value;
233 credentials.password_value = saved_match()->password_value;
234 credentials.preferred = true;
236 credentials, PasswordFormManager::IGNORE_OTHER_POSSIBLE_USERNAMES);
241 // Make sure the credentials that would be submitted on successful login
263 credentials.username_value = new_user;
264 credentials.password_value = new_pass;
266 credentials, PasswordFormManage
358 PasswordForm credentials = *observed_form(); local
595 PasswordForm credentials = *observed_form(); local
650 PasswordForm credentials = *observed_form(); local
[all...]
/external/chromium_org/content/browser/media/android/
H A Dmedia_resource_getter_impl.cc148 // Called by MediaResourceGetterImpl to start getting auth credentials.
208 return entry->credentials();
307 const net::AuthCredentials& credentials) {
309 callback.Run(credentials.username(), credentials.password());
305 GetAuthCredentialsCallback( const GetAuthCredentialsCB& callback, const net::AuthCredentials& credentials) argument
/external/chromium_org/content/shell/browser/
H A Dshell_network_delegate.cc80 net::AuthCredentials* credentials) {
76 OnAuthRequired( net::URLRequest* request, const net::AuthChallengeInfo& auth_info, const AuthCallback& callback, net::AuthCredentials* credentials) argument

Completed in 7276 milliseconds

12345