Searched refs:AuthenticationChallenge (Results 51 - 75 of 95) sorted by relevance

1234

/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.cpp39 AuthenticationChallengeProxy::AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DFrameLoaderClientHaiku.h42 class AuthenticationChallenge;
192 const AuthenticationChallenge&);
195 const AuthenticationChallenge&);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.h45 class AuthenticationChallenge;
190 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
191 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
H A DDownloadCFNet.cpp211 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
216 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
221 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
H A DDownloadMac.mm181 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
186 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
191 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
/external/webkit/Source/WebCore/loader/
H A DFrameLoaderClient.h55 class AuthenticationChallenge;
120 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&) = 0;
121 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&) = 0;
H A DResourceLoader.cpp473 void ResourceLoader::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
481 void ResourceLoader::didCancelAuthenticationChallenge(const AuthenticationChallenge& challenge)
497 void ResourceLoader::receivedCancellation(const AuthenticationChallenge&) argument
H A DResourceLoadNotifier.cpp50 void ResourceLoadNotifier::didReceiveAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge)
55 void ResourceLoadNotifier::didCancelAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge)
H A DSubresourceLoader.cpp256 void SubresourceLoader::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
277 void SubresourceLoader::receivedCancellation(const AuthenticationChallenge& challenge)
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DFrameLoaderClientQt.h50 class AuthenticationChallenge;
94 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
95 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
/external/webkit/Source/WebCore/loader/icon/
H A DIconLoader.cpp127 void IconLoader::didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) argument
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID)
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.cpp76 void Download::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge)
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.h71 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
72 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DFrameLoaderClientEfl.h79 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
89 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.h53 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
54 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h34 #include <WebCore/AuthenticationChallenge.h>
122 template<> struct ArgumentCoder<WebCore::AuthenticationChallenge> {
123 static void encode(ArgumentEncoder* encoder, const WebCore::AuthenticationChallenge& challenge)
128 static bool decode(ArgumentDecoder* decoder, WebCore::AuthenticationChallenge& challenge)
139 challenge = WebCore::AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error);
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceHandleCFNet.cpp35 #include "AuthenticationChallenge.h"
94 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&);
283 handle->didReceiveAuthenticationChallenge(AuthenticationChallenge(challenge, handle));
506 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
562 void ResourceHandle::receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential)
596 void ResourceHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& challenge)
609 void ResourceHandle::receivedCancellation(const AuthenticationChallenge& challenge)
778 void WebCoreSynchronousLoaderClient::didReceiveAuthenticationChallenge(ResourceHandle* handle, const AuthenticationChallenge& challenge)
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.h42 class AuthenticationChallenge;
80 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
81 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/
H A DResourceHandleInternal.h31 #include "AuthenticationChallenge.h"
213 AuthenticationChallenge m_currentWebChallenge;
/external/webkit/Source/WebCore/websockets/
H A DWebSocketChannel.cpp228 void WebSocketChannel::didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) argument
232 void WebSocketChannel::didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) argument
/external/webkit/Source/WebKit/chromium/src/
H A DFrameLoaderClientImpl.h88 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
89 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.h65 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
66 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DFrameLoaderClientWinCE.h60 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
61 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.h64 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
65 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);

Completed in 791 milliseconds

1234