HomeSort by relevance Sort by last modified time
    Searched refs:SetAuth (Results 1 - 19 of 19) sorted by null

  /external/chromium/net/url_request/
url_request_ftp_job.h 55 virtual void SetAuth(const string16& username,
url_request_http_job.h 82 virtual void SetAuth(const string16& username,
url_request_job.h 140 // obtaining the credentials passing them to SetAuth.
148 virtual void SetAuth(const string16& username,
url_request_ftp_job.cc 122 SetAuth(cached_auth->username, cached_auth->password);
204 void URLRequestFtpJob::SetAuth(const string16& username,
url_request.cc 537 void URLRequest::SetAuth(const string16& username, const string16& password) {
541 job_->SetAuth(username, password);
url_request.h 166 // call request->SetAuth() with the user's credentials once it obtains them,
529 // SetAuth will reissue the request with the given credentials.
531 void SetAuth(const string16& username, const string16& password);
url_request_test_util.cc 144 request->SetAuth(username_, password_);
url_request_job.cc 149 void URLRequestJob::SetAuth(const string16& username,
272 // Wait for SetAuth or CancelAuth to be called.
url_request_http_job.cc 947 void URLRequestHttpJob::SetAuth(const string16& username,
    [all...]
  /external/chromium/chrome/browser/ui/login/
login_prompt_uitest.cc 70 EXPECT_FALSE(tab->SetAuth(username_basic_, password_bad_));
79 EXPECT_TRUE(tab->SetAuth(username_basic_, password_));
101 EXPECT_FALSE(tab->SetAuth(username_digest_, password_bad_));
109 EXPECT_TRUE(tab->SetAuth(username_digest_, password_));
137 EXPECT_TRUE(basic_tab->SetAuth(username_basic_, password_));
139 EXPECT_TRUE(digest_tab->SetAuth(username_digest_, password_));
229 EXPECT_TRUE(basic_tab1->SetAuth(username_basic_, password_));
login_prompt_win.cc 88 SetAuth(login_view_->GetUsername(), login_view_->GetPassword());
114 // Scary thread safety note: This can potentially be called *after* SetAuth
login_prompt.h 59 void SetAuth(const string16& username, const string16& password);
80 // Returns whether authentication had been handled (SetAuth or CancelAuth).
112 // Calls SetAuth from the IO loop.
122 // True if we've handled auth (SetAuth or CancelAuth has been called).
login_prompt.cc 127 void LoginHandler::SetAuth(const string16& username,
162 // Similar to how we deal with notifications above in SetAuth()
240 SetAuth(supplied_details->username(), supplied_details->password());
332 // Returns whether authentication had been handled (SetAuth or CancelAuth).
347 // Calls SetAuth from the IO loop.
353 request_->SetAuth(username, password);
login_prompt_gtk.cc 109 // Scary thread safety note: This can potentially be called *after* SetAuth
159 SetAuth(
login_prompt_browsertest.cc 60 handler->SetAuth(WideToUTF16Hack(info.username_),
369 handler->SetAuth(WideToUTF16Hack(bad_username_),
login_prompt_ui.cc 214 login_handler_->SetAuth(username, password);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebRequest.cpp 386 // call request->SetAuth() with the user's credentials once it obtains them,
444 void WebRequest::setAuth(const string16& username, const string16& password)
446 ASSERT(m_loadState == Started, "setAuth called on a WebRequest not in STARTED state (state=%d)", m_loadState);
448 m_request->SetAuth(username, password);
  /external/chromium/chrome/browser/automation/
testing_automation_provider.h 90 void SetAuth(int tab_handle, const std::wstring& username,
    [all...]
testing_automation_provider.cc 244 IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_SetAuth, SetAuth)
621 void TestingAutomationProvider::SetAuth(int tab_handle,
636 handler->SetAuth(WideToUTF16Hack(username), WideToUTF16Hack(password));
    [all...]

Completed in 107 milliseconds