Searched refs:credentials (Results 51 - 75 of 220) sorted by relevance

123456789

/external/chromium_org/tools/perf/page_sets/
H A Dgmail_compose_discard.py28 self.credentials_path = 'data/credentials.json'
29 self.credentials = 'google'
69 credentials_path='data/credentials.json',
H A Dplus_alt_posts_photos.py17 self.credentials_path = 'data/credentials.json'
18 self.credentials = 'google'
45 credentials_path='data/credentials.json',
H A Dtough_energy_cases.py12 self.credentials_path = 'data/credentials.json'
18 self.credentials = 'codepen'
27 self.credentials = 'google'
43 credentials_path='data/credentials.json')
H A Dtough_pinch_zoom_cases.py13 self.credentials_path = 'data/credentials.json'
47 self.credentials = 'google'
65 self.credentials = 'google'
87 self.credentials = 'google'
99 self.credentials = 'google'
121 self.credentials = 'google'
152 self.credentials = 'facebook'
249 credentials_path='data/credentials.json',
/external/chromium_org/chrome/browser/extensions/api/cloud_print_private/
H A Dcloud_print_private_api.cc48 params->credentials,
57 service->EnableForUserWithRobot(params->credentials,
/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/common/extensions/docs/examples/apps/hello-python/httplib2/
H A D__init__.py406 # For credentials we need two things, first
415 def __init__(self, credentials, host, request_uri, headers, response, content, http):
419 self.credentials = credentials
449 def __init__(self, credentials, host, request_uri, headers, response, content, http):
450 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
455 headers['authorization'] = 'Basic ' + base64.b64encode("%s:%s" % self.credentials).strip()
461 def __init__(self, credentials, host, request_uri, headers, response, content, http):
462 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
472 self.A1 = "".join([self.credentials[
[all...]
/external/chromium_org/net/http/
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
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_sspi_win.cc70 // Pass the username/password to get the credentials handle.
89 // Pass the username/password to get the credentials handle.
91 // cached credentials for the logged in user, which can be used
259 int HttpAuthSSPI::GenerateAuthToken(const AuthCredentials* credentials, argument
264 int rv = OnFirstRound(credentials);
292 int HttpAuthSSPI::OnFirstRound(const AuthCredentials* credentials) { argument
295 if (credentials) {
298 SplitDomainAndUser(credentials->username(), &domain, &user);
300 user, credentials->password(), &cred_);
H A Dhttp_auth_cache_unittest.cc49 *auth_token = "mock-credentials";
160 EXPECT_EQ(ASCIIToUTF16("realm3-basic-user"), entry->credentials().username());
162 entry->credentials().password());
173 entry->credentials().username());
175 entry->credentials().password());
183 EXPECT_EQ(ASCIIToUTF16("realm2-user"), entry->credentials().username());
184 EXPECT_EQ(ASCIIToUTF16("realm2-password"), entry->credentials().password());
298 EXPECT_EQ(ASCIIToUTF16("user3"), entry->credentials().username());
299 EXPECT_EQ(ASCIIToUTF16("password3"), entry->credentials().password());
498 EXPECT_EQ(kAlice, entry->credentials()
[all...]
H A Dhttp_auth_handler_basic_unittest.cc40 AuthCredentials credentials(base::ASCIIToUTF16(tests[i].username),
44 int rv = basic->GenerateAuthToken(&credentials, &request_info,
/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/net/url_request/
H A Durl_request_ftp_job.cc271 auth_data_->credentials,
276 auth_data_->credentials,
318 void URLRequestFtpJob::SetAuth(const AuthCredentials& credentials) { argument
323 auth_data_->credentials = credentials;
327 auth_data_->credentials);
391 ftp_auth_cache_->Remove(origin, auth_data_->credentials);
402 SetAuth(cached_auth->credentials);
/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/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpas-dbus-new-wps.py33 def credentials(cred): function
34 print "WPS credentials: %s" % (cred)
62 bus.add_signal_receiver(credentials,
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_form_manager.cc235 const PasswordForm& credentials,
238 DCHECK_NE(RESULT_NO_MATCH, DoesManage(credentials));
242 // still be "new" in the sense that we see these credentials for the first
245 base::string16 password_to_save(credentials.new_password_element.empty() ?
246 credentials.password_value : credentials.new_password_value);
251 // Look for these credentials in the list containing auto-fill entries.
253 best_matches_.find(credentials.username_value);
260 // If the autofilled credentials were only a PSL match, store a copy with
266 // Normally, the copy of the PSL matched credentials, adapte
234 ProvisionallySave( const PasswordForm& credentials, OtherPossibleUsernamesAction action) argument
[all...]
/external/chromium_org/sync/tools/
H A Dsync_client.cc319 SyncCredentials credentials; local
320 credentials.email = command_line.GetSwitchValueASCII(kEmailSwitch);
321 credentials.sync_token = command_line.GetSwitchValueASCII(kTokenSwitch);
324 if (credentials.email.empty() || credentials.sync_token.empty()) {
441 args.credentials = credentials;
455 invalidator->UpdateCredentials(credentials.email, credentials.sync_token);
/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/chrome/browser/sync/
H A Dtest_profile_sync_service.cc53 options->credentials.email = "testuser@gmail.com";
54 options->credentials.sync_token = "token";
55 options->credentials.scope_set.insert(GaiaConstants::kChromeSyncOAuth2Scope);
/external/chromium_org/net/socket/
H A Dunix_domain_listen_socket_posix.cc116 UnixDomainServerSocket::Credentials credentials;
117 if (!UnixDomainServerSocket::GetPeerCredentials(conn, &credentials) ||
118 !auth_callback_.Run(credentials)) {
/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_host.h68 const syncer::SyncCredentials& credentials,
78 const syncer::SyncCredentials& credentials) = 0;
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
H A Dsync_backend_host_mock.h33 const syncer::SyncCredentials& credentials,
42 const syncer::SyncCredentials& credentials) OVERRIDE;
/external/chromium_org/chrome/browser/android/
H A Ddev_tools_server.cc71 const net::UnixDomainServerSocket::Credentials& credentials) {
75 credentials.process_id, credentials.user_id) ||
76 content::CanUserConnectToDevTools(credentials);
70 AuthorizeSocketAccessWithDebugPermission( const net::UnixDomainServerSocket::Credentials& credentials) argument

Completed in 8321 milliseconds

123456789