Searched refs:AuthenticationChallenge (Results 1 - 25 of 69) sorted by relevance

123

/external/webkit/WebCore/platform/network/chromium/
H A DAuthenticationChallengeChromium.cpp32 #include "AuthenticationChallenge.h"
36 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge&, const AuthenticationChallenge&) argument
H A DAuthenticationChallenge.h36 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
38 AuthenticationChallenge() {} function in class:WebCore::AuthenticationChallenge
39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
45 static bool platformCompare(const AuthenticationChallenge&, const AuthenticationChallenge&);
H A DSocketStreamHandle.h42 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/android/
H A DAuthenticationChallenge.h34 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
/external/webkit/WebCore/platform/network/cf/
H A DAuthenticationChallenge.h36 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
38 AuthenticationChallenge() {} function in class:WebCore::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);
H A DAuthenticationCF.h35 class AuthenticationChallenge;
39 CFURLAuthChallengeRef createCF(const AuthenticationChallenge&);
H A DAuthenticationCF.cpp29 #include "AuthenticationChallenge.h"
40 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace, function in class:WebCore::AuthenticationChallenge
53 AuthenticationChallenge::AuthenticationChallenge(CFURLAuthChallengeRef cfChallenge, function in class:WebCore::AuthenticationChallenge
65 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge& b)
76 CFURLAuthChallengeRef createCF(const AuthenticationChallenge& coreChallenge)
H A DSocketStreamHandle.h41 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/
H A DAuthenticationClient.h31 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;
H A DAuthenticationChallengeBase.h35 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); }
H A DSocketStreamHandleClient.h37 class AuthenticationChallenge;
53 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { } argument
54 virtual void didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { } argument
H A DResourceHandleClient.h48 class AuthenticationChallenge;
80 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { } argument
81 virtual void didCancelAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { } argument
82 virtual void receivedCancellation(ResourceHandle*, const AuthenticationChallenge&) { } argument
/external/webkit/WebCore/platform/network/qt/
H A DAuthenticationChallenge.h32 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
34 AuthenticationChallenge() function in class:WebCore::AuthenticationChallenge
38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) function in class:WebCore::AuthenticationChallenge
H A DSocketStreamHandle.h43 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/
H A DAuthenticationChallenge.h32 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
34 AuthenticationChallenge() function in class:WebCore::AuthenticationChallenge
38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) function in class:WebCore::AuthenticationChallenge
H A DSocketStreamHandleSoup.cpp68 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) argument
73 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&) argument
78 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) argument
83 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&) argument
H A DSocketStreamHandle.h42 class AuthenticationChallenge;
60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
62 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
63 void receivedCancellation(const AuthenticationChallenge&);
/external/webkit/WebCore/platform/network/mac/
H A DAuthenticationChallenge.h42 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
44 AuthenticationChallenge() { } function in class:WebCore::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);
H A DAuthenticationMac.h36 class AuthenticationChallenge;
40 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge&);
44 AuthenticationChallenge core(NSURLAuthenticationChallenge *);
/external/webkit/WebCore/platform/network/curl/
H A DAuthenticationChallenge.h34 class AuthenticationChallenge : public AuthenticationChallengeBase { class in namespace:WebCore
36 AuthenticationChallenge() function in class:WebCore::AuthenticationChallenge
40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) function in class:WebCore::AuthenticationChallenge
H A DSocketStreamHandleCurl.cpp69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) argument
74 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&) argument
79 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) argument
84 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&) argument
H A DSocketStreamHandle.h42 class AuthenticationChallenge;
60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
62 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
63 void receivedCancellation(const AuthenticationChallenge&);
/external/webkit/WebCore/loader/
H A DSubresourceLoaderClient.h34 class AuthenticationChallenge;
54 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) { } argument
55 virtual void receivedCancellation(SubresourceLoader*, const AuthenticationChallenge&) { } argument
H A DSubresourceLoader.h57 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
58 virtual void receivedCancellation(const AuthenticationChallenge&);
/external/webkit/WebKit/win/
H A DWebURLAuthenticationChallenge.h32 #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 183 milliseconds

123