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

1 2 3

  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 26 public class HttpAuthHandler extends Handler {
31 HttpAuthHandler() {
WebViewClient.java 239 * @param handler The HttpAuthHandler that will handle the user's response.
245 HttpAuthHandler handler, String host, String realm) {
  /external/chromium/net/http/
http_auth_handler.cc 12 HttpAuthHandler::HttpAuthHandler()
20 this, &HttpAuthHandler::OnGenerateAuthTokenComplete)) {
23 HttpAuthHandler::~HttpAuthHandler() {
26 bool HttpAuthHandler::InitFromChallenge(
65 int HttpAuthHandler::GenerateAuthToken(const string16* username,
85 bool HttpAuthHandler::NeedsIdentity() {
89 bool HttpAuthHandler::AllowsDefaultCredentials() {
93 void HttpAuthHandler::OnGenerateAuthTokenComplete(int rv)
    [all...]
http_auth_handler_basic.h 18 class HttpAuthHandlerBasic : public HttpAuthHandler {
31 scoped_ptr<HttpAuthHandler>* handler);
http_auth_handler.h 20 // HttpAuthHandler is the interface for the authentication schemes
22 // HttpAuthHandler objects are typically created by an HttpAuthHandlerFactory.
23 class HttpAuthHandler {
25 HttpAuthHandler();
26 virtual ~HttpAuthHandler();
104 // that this HttpAuthHandler is handling. The URL includes scheme, host, and
190 CompletionCallbackImpl<HttpAuthHandler> wrapper_callback_;
http_auth_handler_mock.h 22 class HttpAuthHandlerMock : public HttpAuthHandler {
39 void set_mock_handler(HttpAuthHandler* handler, HttpAuth::Target target);
52 scoped_ptr<HttpAuthHandler>* handler);
55 scoped_ptr<HttpAuthHandler> handlers_[HttpAuth::AUTH_NUM_TARGETS];
81 // HttpAuthHandler:
http_auth_handler_factory.h 24 class HttpAuthHandler;
27 // An HttpAuthHandlerFactory is used to create HttpAuthHandler objects.
28 // The HttpAuthHandlerFactory object _must_ outlive any of the HttpAuthHandler
51 // Creates an HttpAuthHandler object based on the authentication
55 // If an HttpAuthHandler object is successfully created it is passed back to
83 scoped_ptr<HttpAuthHandler>* handler) = 0;
94 scoped_ptr<HttpAuthHandler>* handler);
107 scoped_ptr<HttpAuthHandler>* handler);
192 scoped_ptr<HttpAuthHandler>* handler);
http_auth_controller.h 25 class HttpAuthHandler;
133 scoped_ptr<HttpAuthHandler> handler_;
http_auth_handler_ntlm_win.cc 62 scoped_ptr<HttpAuthHandler>* handler) {
75 scoped_ptr<HttpAuthHandler> tmp_handler(
http_auth_handler_factory_unittest.cc 30 scoped_ptr<HttpAuthHandler>* handler) {
56 scoped_ptr<HttpAuthHandler> handler;
109 scoped_ptr<HttpAuthHandler> handler;
125 scoped_ptr<HttpAuthHandler> handler;
136 scoped_ptr<HttpAuthHandler> handler;
152 scoped_ptr<HttpAuthHandler> handler;
168 scoped_ptr<HttpAuthHandler> handler;
http_auth.h 21 class HttpAuthHandler;
141 scoped_ptr<HttpAuthHandler>* handler);
150 // |handler| must be non-NULL, and is the HttpAuthHandler from the previous
165 HttpAuthHandler* handler,
http_auth_handler_basic_unittest.cc 36 scoped_ptr<HttpAuthHandler> basic;
87 scoped_ptr<HttpAuthHandler> basic;
179 scoped_ptr<HttpAuthHandler> basic;
http_auth.cc 31 scoped_ptr<HttpAuthHandler>* handler) {
36 scoped_ptr<HttpAuthHandler> best;
41 scoped_ptr<HttpAuthHandler> cur;
58 HttpAuthHandler* handler,
http_auth_handler_basic.cc 100 scoped_ptr<HttpAuthHandler>* handler) {
103 scoped_ptr<HttpAuthHandler> tmp_handler(new HttpAuthHandlerBasic());
http_auth_handler_ntlm.h 38 class HttpAuthHandlerNTLM : public HttpAuthHandler {
51 scoped_ptr<HttpAuthHandler>* handler);
58 // HttpAuthHandler's that this Factory object creates.
http_auth_cache_unittest.cc 20 class MockAuthHandler : public HttpAuthHandler {
83 scoped_ptr<HttpAuthHandler> realm1_handler(
91 scoped_ptr<HttpAuthHandler> realm2_handler(
99 scoped_ptr<HttpAuthHandler> realm3_basic_handler(
108 scoped_ptr<HttpAuthHandler> realm3_digest_handler(
117 scoped_ptr<HttpAuthHandler> realm4_basic_handler(
267 scoped_ptr<HttpAuthHandler> handler(
293 scoped_ptr<HttpAuthHandler> realm1_handler(
297 scoped_ptr<HttpAuthHandler> realm2_handler(
301 scoped_ptr<HttpAuthHandler> realm3_basic_handler
    [all...]
http_auth_handler_mock.cc 146 HttpAuthHandler* handler, HttpAuth::Target target) {
158 scoped_ptr<HttpAuthHandler>* handler) {
161 scoped_ptr<HttpAuthHandler> tmp_handler(handlers_[target].release());
http_auth_handler_digest.h 21 class HttpAuthHandlerDigest : public HttpAuthHandler {
74 scoped_ptr<HttpAuthHandler>* handler);
http_auth_handler_negotiate.h 34 class HttpAuthHandlerNegotiate : public HttpAuthHandler {
79 scoped_ptr<HttpAuthHandler>* handler);
108 // HttpAuthHandler:
http_auth_handler_digest_unittest.cc 52 scoped_ptr<HttpAuthHandler> handler;
340 scoped_ptr<HttpAuthHandler> handler;
505 scoped_ptr<HttpAuthHandler> handler;
531 scoped_ptr<HttpAuthHandler> handler;
http_auth_handler_factory.cc 23 scoped_ptr<HttpAuthHandler>* handler) {
35 scoped_ptr<HttpAuthHandler>* handler) {
174 scoped_ptr<HttpAuthHandler>* handler) {
http_auth_handler_negotiate.cc 45 scoped_ptr<HttpAuthHandler>* handler) {
59 scoped_ptr<HttpAuthHandler> tmp_handler(
70 scoped_ptr<HttpAuthHandler> tmp_handler(
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 28 import android.webkit.HttpAuthHandler;
33 @TestTargetClass(android.webkit.HttpAuthHandler.class)
160 HttpAuthHandler handler, String host, String realm) {
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 27 import android.webkit.HttpAuthHandler;
72 void onReceivedHttpAuthRequest(Tab tab, WebView view, final HttpAuthHandler handler,
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebViewClient.java 24 import android.webkit.HttpAuthHandler;
114 HttpAuthHandler handler, String host, String realm) {

Completed in 180 milliseconds

1 2 3