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

1 2 3

  /external/webkit/WebCore/platform/network/chromium/
AuthenticationChallengeChromium.cpp 32 #include "AuthenticationChallenge.h"
36 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge&, const AuthenticationChallenge&)
AuthenticationChallenge.h 36 class AuthenticationChallenge : public AuthenticationChallengeBase {
38 AuthenticationChallenge() {}
39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
45 static bool platformCompare(const AuthenticationChallenge&, const AuthenticationChallenge&);
SocketStreamHandle.h 42 class AuthenticationChallenge;
61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
62 void receivedCredential(const AuthenticationChallenge&, const Credential&);
63 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
64 void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/WebCore/platform/network/
AuthenticationClient.h 31 class AuthenticationChallenge;
36 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&) = 0;
37 virtual void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) = 0;
38 virtual void receivedCancellation(const AuthenticationChallenge&) = 0;
SocketStreamHandleClient.h 37 class AuthenticationChallenge;
53 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
54 virtual void didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
AuthenticationChallengeBase.h 35 class AuthenticationChallenge;
51 static bool compare(const AuthenticationChallenge& a, const AuthenticationChallenge& b);
54 // The AuthenticationChallenge subclass may "shadow" this method to compare platform specific fields
65 inline bool operator==(const AuthenticationChallenge& a, const AuthenticationChallenge& b) { return AuthenticationChallengeBase::compare(a, b); }
66 inline bool operator!=(const AuthenticationChallenge& a, const AuthenticationChallenge& b) { return !(a == b); }
ResourceHandleClient.h 48 class AuthenticationChallenge;
80 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { }
81 virtual void didCancelAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { }
82 virtual void receivedCancellation(ResourceHandle*, const AuthenticationChallenge&) { }
  /external/webkit/WebCore/platform/network/android/
AuthenticationChallenge.h 34 class AuthenticationChallenge : public AuthenticationChallengeBase {
  /external/webkit/WebCore/platform/network/cf/
AuthenticationChallenge.h 36 class AuthenticationChallenge : public AuthenticationChallengeBase {
38 AuthenticationChallenge() {}
39 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
40 AuthenticationChallenge(CFURLAuthChallengeRef, AuthenticationClient*);
49 static bool platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge& b);
AuthenticationCF.h 35 class AuthenticationChallenge;
39 CFURLAuthChallengeRef createCF(const AuthenticationChallenge&);
SocketStreamHandle.h 41 class AuthenticationChallenge;
87 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&);
88 virtual void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
89 virtual void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/WebCore/platform/network/mac/
AuthenticationChallenge.h 42 class AuthenticationChallenge : public AuthenticationChallengeBase {
44 AuthenticationChallenge() { }
45 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
46 AuthenticationChallenge(NSURLAuthenticationChallenge *);
55 static bool platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge& b);
AuthenticationMac.h 36 class AuthenticationChallenge;
40 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge&);
44 AuthenticationChallenge core(NSURLAuthenticationChallenge *);
  /external/webkit/WebCore/platform/network/curl/
AuthenticationChallenge.h 34 class AuthenticationChallenge : public AuthenticationChallengeBase {
36 AuthenticationChallenge()
40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
SocketStreamHandle.h 42 class AuthenticationChallenge;
60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
62 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
63 void receivedCancellation(const AuthenticationChallenge&);
SocketStreamHandleCurl.cpp 69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
74 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&)
79 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&)
84 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&)
  /external/webkit/WebCore/platform/network/qt/
AuthenticationChallenge.h 32 class AuthenticationChallenge : public AuthenticationChallengeBase {
34 AuthenticationChallenge()
38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
SocketStreamHandle.h 43 class AuthenticationChallenge;
62 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
63 void receivedCredential(const AuthenticationChallenge&, const Credential&);
64 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
65 void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/WebCore/platform/network/soup/
AuthenticationChallenge.h 32 class AuthenticationChallenge : public AuthenticationChallengeBase {
34 AuthenticationChallenge()
38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
SocketStreamHandle.h 42 class AuthenticationChallenge;
60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
62 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
63 void receivedCancellation(const AuthenticationChallenge&);
SocketStreamHandleSoup.cpp 68 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
73 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&)
78 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&)
83 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&)
  /external/webkit/WebCore/loader/
SubresourceLoaderClient.h 34 class AuthenticationChallenge;
54 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) { }
55 virtual void receivedCancellation(SubresourceLoader*, const AuthenticationChallenge&) { }
ResourceLoadNotifier.h 37 class AuthenticationChallenge;
50 void didReceiveAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
51 void didCancelAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
SubresourceLoader.h 57 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
58 virtual void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/WebKit/win/
WebURLAuthenticationChallenge.h 32 #include <WebCore/AuthenticationChallenge.h>
38 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&);
39 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
41 WebURLAuthenticationChallenge(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
81 const WebCore::AuthenticationChallenge& authenticationChallenge() const;
86 WebCore::AuthenticationChallenge m_authenticationChallenge;

Completed in 175 milliseconds

1 2 3