Searched refs:AuthenticationChallenge (Results 26 - 50 of 95) sorted by relevance

1234

/external/webkit/Source/WebKit/win/
H A DWebURLAuthenticationChallenge.h30 #include <WebCore/AuthenticationChallenge.h>
35 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&);
36 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
38 WebURLAuthenticationChallenge(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
78 const WebCore::AuthenticationChallenge& authenticationChallenge() const;
83 WebCore::AuthenticationChallenge m_authenticationChallenge;
H A DWebURLAuthenticationChallenge.cpp45 WebURLAuthenticationChallenge::WebURLAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge,
61 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge)
68 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge,
147 // FIXME: After we change AuthenticationChallenge to use "ResourceHandle" as the abstract "Sender" or "Source of this Auth Challenge", then we'll
148 // construct the AuthenticationChallenge with that as obtained from the webSender
150 m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->credential(),
172 m_authenticationChallenge = AuthenticationChallenge(webChallenge->authenticationChallenge().cfURLAuthChallengeRef(), webSender->authenticationClient());
228 const AuthenticationChallenge& WebURLAuthenticationChallenge::authenticationChallenge() const
/external/webkit/Source/WebCore/platform/network/soup/
H A DSocketStreamHandle.h42 class AuthenticationChallenge;
71 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
72 void receivedCredential(const AuthenticationChallenge&, const Credential&);
73 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
74 void receivedCancellation(const AuthenticationChallenge&);
H A DSocketStreamHandleSoup.cpp199 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) argument
204 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&) argument
209 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) argument
214 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&) argument
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.cpp37 #include <WebCore/AuthenticationChallenge.h>
65 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const AuthenticationChallenge& authenticationChallenge)
76 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const AuthenticationChallenge& authenticationChallenge)
86 AuthenticationChallenge challenge = m_challenges.take(challengeID);
101 AuthenticationChallenge challenge = m_challenges.take(challengeID);
115 AuthenticationChallenge challenge = m_challenges.take(challengeID);
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.h30 #include <WebCore/AuthenticationChallenge.h>
50 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
66 AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge&, uint64_t challengeID, WebProcessProxy*);
70 WebCore::AuthenticationChallenge m_coreAuthenticationChallenge;
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.cpp31 #include "AuthenticationChallenge.h"
46 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace, function in class:WebCore::AuthenticationChallenge
59 AuthenticationChallenge::AuthenticationChallenge(CFURLAuthChallengeRef cfChallenge, function in class:WebCore::AuthenticationChallenge
71 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge& b)
82 CFURLAuthChallengeRef createCF(const AuthenticationChallenge& coreChallenge)
H A DSocketStreamHandle.h43 class AuthenticationChallenge;
94 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&);
95 virtual void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
96 virtual void receivedCancellation(const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/
H A DResourceHandleClient.h49 class AuthenticationChallenge;
89 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { } argument
90 virtual void didCancelAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { } argument
94 virtual void receivedCancellation(ResourceHandle*, const AuthenticationChallenge&) { } argument
H A DAuthenticationChallengeBase.cpp26 #include "AuthenticationChallenge.h"
87 bool AuthenticationChallengeBase::compare(const AuthenticationChallenge& a, const AuthenticationChallenge& b)
110 return AuthenticationChallenge::platformCompare(a, b);
H A DResourceHandle.h29 #include "AuthenticationChallenge.h"
80 class AuthenticationChallenge;
119 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
120 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&);
121 virtual void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
122 virtual void receivedCancellation(const AuthenticationChallenge&);
126 void didCancelAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebCore/loader/
H A DResourceLoadNotifier.h37 class AuthenticationChallenge;
51 void didReceiveAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
52 void didCancelAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
H A DResourceLoader.h36 #include "AuthenticationChallenge.h"
96 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
97 void didCancelAuthenticationChallenge(const AuthenticationChallenge&);
101 virtual void receivedCancellation(const AuthenticationChallenge&);
115 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didReceiveAuthenticationChallenge(challenge); }
116 virtual void didCancelAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didCancelAuthenticationChallenge(challenge); }
123 virtual void receivedCancellation(ResourceHandle*, const AuthenticationChallenge& challenge) { receivedCancellation(challenge); }
H A DSubresourceLoader.h60 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 virtual void receivedCancellation(const AuthenticationChallenge&);
H A DDocumentThreadableLoader.h85 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&);
86 virtual void receivedCancellation(SubresourceLoader*, const AuthenticationChallenge&);
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.h50 class AuthenticationChallenge;
79 void didReceiveAuthenticationChallenge(const WebCore::AuthenticationChallenge&);
96 static void receivedCredential(const WebCore::AuthenticationChallenge&, const WebCore::Credential&);
97 static void receivedRequestToContinueWithoutCredential(const WebCore::AuthenticationChallenge&);
98 static void receivedCancellation(const WebCore::AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/mac/
H A DAuthenticationMac.mm30 #import "AuthenticationChallenge.h"
99 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
112 AuthenticationChallenge::AuthenticationChallenge(NSURLAuthenticationChallenge *challenge)
123 void AuthenticationChallenge::setAuthenticationClient(AuthenticationClient* client)
134 AuthenticationClient* AuthenticationChallenge::authenticationClient() const
142 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge
[all...]
/external/webkit/Source/WebCore/platform/network/qt/
H A DSocketStreamHandlePrivate.h41 class AuthenticationChallenge;
H A DSocketStreamHandleQt.cpp183 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) argument
188 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&) argument
193 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) argument
198 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&) argument
/external/webkit/Source/WebCore/loader/icon/
H A DIconLoader.h57 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/brew/
H A DSocketStreamHandleBrew.cpp210 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) argument
215 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge&, const Credential&) argument
220 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) argument
225 void SocketStreamHandle::receivedCancellation(const AuthenticationChallenge&) argument
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleCurl.cpp205 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) argument
210 void ResourceHandle::receivedCredential(const AuthenticationChallenge&, const Credential&) argument
215 void ResourceHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) argument
220 void ResourceHandle::receivedCancellation(const AuthenticationChallenge&) argument
/external/webkit/Source/WebCore/websockets/
H A DWebSocketChannel.h70 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&);
71 virtual void didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&);
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.h37 class AuthenticationChallenge;
73 void didReceiveAuthenticationChallenge(const WebCore::AuthenticationChallenge&, uint64_t challengeID);
/external/webkit/Source/WebKit/chromium/src/
H A DSocketStreamHandle.cpp218 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
224 void SocketStreamHandle::receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential)
229 void SocketStreamHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& challenge)

Completed in 282 milliseconds

1234