/external/chromium/net/http/ |
http_auth_handler.h | 18 // HttpAuthHandler is the interface for the authentication schemes 22 class HttpAuthHandler : public base::RefCounted<HttpAuthHandler> { 87 friend class base::RefCounted<HttpAuthHandler>; 89 virtual ~HttpAuthHandler() { }
|
http_auth_handler_basic.h | 13 class HttpAuthHandlerBasic : public HttpAuthHandler {
|
http_auth_handler.cc | 10 bool HttpAuthHandler::InitFromChallenge(std::string::const_iterator begin,
|
http_auth_handler_negotiate.h | 25 class HttpAuthHandlerNegotiate : public HttpAuthHandler {
|
http_auth_cache.h | 60 HttpAuthHandler* handler, 102 HttpAuthHandler* handler() const { 138 scoped_refptr<HttpAuthHandler> handler_;
|
http_auth.cc | 24 scoped_refptr<HttpAuthHandler>* handler) { 41 scoped_refptr<HttpAuthHandler> best; 46 scoped_refptr<HttpAuthHandler> cur; 58 scoped_refptr<HttpAuthHandler>* handler) { 66 scoped_refptr<HttpAuthHandler> tmp_handler;
|
http_auth_cache_unittest.cc | 14 class MockAuthHandler : public HttpAuthHandler { 52 scoped_refptr<HttpAuthHandler> realm1_handler = 57 scoped_refptr<HttpAuthHandler> realm2_handler = 62 scoped_refptr<HttpAuthHandler> realm3_handler = 155 scoped_refptr<HttpAuthHandler> handler = 177 scoped_refptr<HttpAuthHandler> realm1_handler = 180 scoped_refptr<HttpAuthHandler> realm2_handler = 183 scoped_refptr<HttpAuthHandler> realm3_handler = 230 scoped_refptr<HttpAuthHandler> handler = new MockAuthHandler("basic",
|
http_auth.h | 14 class HttpAuthHandler; 79 scoped_refptr<HttpAuthHandler>* handler); 97 scoped_refptr<HttpAuthHandler>* handler);
|
http_auth_unittest.cc | 82 scoped_refptr<HttpAuthHandler> handler; 124 scoped_refptr<HttpAuthHandler> handler; 135 scoped_refptr<HttpAuthHandler> old_handler = handler; 257 scoped_refptr<HttpAuthHandler> handler; 270 scoped_refptr<HttpAuthHandler> handler; 278 scoped_refptr<HttpAuthHandler> handler; 291 scoped_refptr<HttpAuthHandler> handler;
|
http_auth_handler_ntlm.h | 34 class HttpAuthHandlerNTLM : public HttpAuthHandler {
|
http_auth_handler_digest.h | 16 class HttpAuthHandlerDigest : public HttpAuthHandler {
|
http_auth_cache.cc | 98 HttpAuthHandler* handler,
|
http_network_transaction.h | 267 scoped_refptr<HttpAuthHandler> auth_handler_[2];
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
HttpAuthHandlerTest.java | 28 import android.webkit.HttpAuthHandler; 33 @TestTargetClass(android.webkit.HttpAuthHandler.class) 159 HttpAuthHandler handler, String host, String realm) {
|
WebViewClientTest.java | 30 import android.webkit.HttpAuthHandler; 188 args = {WebView.class, HttpAuthHandler.class, String.class, String.class} 358 HttpAuthHandler handler, String host, String realm) {
|
/packages/apps/Browser/tests/src/com/android/browser/ |
TestWebViewClient.java | 23 import android.webkit.HttpAuthHandler; 106 HttpAuthHandler handler, String host, String realm) {
|
PopularUrlsTest.java | 26 import android.webkit.HttpAuthHandler; 212 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler,
|
/frameworks/base/core/java/android/webkit/ |
WebViewClient.java | 190 * @param handler The HttpAuthHandler that will handle the user's response. 196 HttpAuthHandler handler, String host, String realm) {
|
HttpAuthHandler.java | 33 public class HttpAuthHandler extends Handler { 70 /* package */ HttpAuthHandler(Network network) {
|
Network.java | 77 private HttpAuthHandler mHttpAuthHandler; 140 mHttpAuthHandler = new HttpAuthHandler(this);
|
CallbackProxy.java | 334 HttpAuthHandler handler = (HttpAuthHandler) msg.obj; [all...] |
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
ReliabilityTestActivity.java | 28 import android.webkit.HttpAuthHandler; 215 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host,
|
TestShellActivity.java | 38 import android.webkit.HttpAuthHandler; 516 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler,
|
/external/chromium/net/socket_stream/ |
socket_stream.h | 278 scoped_refptr<HttpAuthHandler> auth_handler_;
|
/packages/apps/Browser/src/com/android/browser/ |
Tab.java | 57 import android.webkit.HttpAuthHandler; [all...] |