OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SetAuth
(Results
1 - 25
of
37
) sorted by null
1
2
/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.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);
/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/chromium_org/chrome/browser/ui/android/
chrome_http_auth_handler.cc
60
void ChromeHttpAuthHandler::
SetAuth
(JNIEnv* env,
67
observer_->
SetAuth
(username16, password16);
chrome_http_auth_handler.h
27
// Registers an observer to receive callbacks when
SetAuth
() and CancelAuth()
46
void
SetAuth
(JNIEnv* env, jobject, jstring username, jstring password);
/external/chromium_org/net/url_request/
url_request_ftp_job.h
69
virtual void
SetAuth
(const AuthCredentials& credentials) OVERRIDE;
url_request_http_job.h
112
virtual void
SetAuth
(const AuthCredentials& credentials) OVERRIDE;
url_request_job.h
164
// obtaining the credentials passing them to
SetAuth
.
172
virtual void
SetAuth
(const AuthCredentials& credentials);
url_request_ftp_job.cc
315
void URLRequestFtpJob::
SetAuth
(const AuthCredentials& credentials) {
399
SetAuth
(cached_auth->credentials);
/external/chromium_org/android_webview/browser/
aw_login_delegate.cc
119
request_->
SetAuth
(net::AuthCredentials(user, password));
/external/chromium_org/chrome/browser/ui/login/
login_prompt.h
61
void
SetAuth
(const base::string16& username, const base::string16& password);
78
// Returns whether authentication had been handled (
SetAuth
or CancelAuth).
113
// Calls
SetAuth
from the IO loop.
123
// True if we've handled auth (
SetAuth
or CancelAuth has been called).
login_prompt_browsertest.cc
77
handler->
SetAuth
(UTF8ToUTF16(info.username_),
299
handler->
SetAuth
(UTF8ToUTF16(bad_username_), UTF8ToUTF16(bad_password_));
347
handler->
SetAuth
(UTF8ToUTF16(bad_username_), UTF8ToUTF16(bad_password_));
362
handler->
SetAuth
(username, password);
421
handler1->
SetAuth
(UTF8ToUTF16(username_basic_), UTF8ToUTF16(password_));
422
handler2->
SetAuth
(UTF8ToUTF16(username_digest_), UTF8ToUTF16(password_));
659
handler->
SetAuth
(UTF8ToUTF16(bad_username_),
[
all
...]
login_prompt.cc
130
void LoginHandler::
SetAuth
(const base::string16& username,
164
// Similar to how we deal with notifications above in
SetAuth
()
217
SetAuth
(supplied_details->username(), supplied_details->password());
224
// Returns whether authentication had been handled (
SetAuth
or CancelAuth).
347
// Calls
SetAuth
from the IO loop.
353
request_->
SetAuth
(net::AuthCredentials(username, password));
/external/chromium_org/chrome/browser/ui/views/
login_prompt_views.cc
109
SetAuth
(login_view_->GetUsername(), login_view_->GetPassword());
150
// Scary thread safety note: This can potentially be called *after*
SetAuth
/external/chromium_org/content/shell/browser/
shell_login_dialog.cc
97
request_->
SetAuth
(net::AuthCredentials(username, password));
/external/chromium_org/chrome/browser/ui/gtk/
login_prompt_gtk.cc
116
// Scary thread safety note: This can potentially be called *after*
SetAuth
167
SetAuth
(
Completed in 456 milliseconds
1
2