Searched refs:didReceiveAuthenticationChallenge (Results 1 - 25 of 62) sorted by relevance

123

/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.h55 void didReceiveAuthenticationChallenge(WebFrame*, const WebCore::AuthenticationChallenge&);
56 void didReceiveAuthenticationChallenge(Download*, const WebCore::AuthenticationChallenge&);
H A DAuthenticationManager.cpp65 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const AuthenticationChallenge& authenticationChallenge) function in class:WebKit::AuthenticationManager
76 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const AuthenticationChallenge& authenticationChallenge) function in class:WebKit::AuthenticationManager
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamHandleClient.h53 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { } function in class:WebCore::SocketStreamHandleClient
H A DResourceHandleClient.h89 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { } function in class:WebCore::ResourceHandleClient
/external/webkit/Source/WebCore/loader/
H A DSubresourceLoaderClient.h55 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) { } function in class:WebCore::SubresourceLoaderClient
H A DResourceLoader.h96 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
115 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didReceiveAuthenticationChallenge(challenge); } function in class:WebCore::ResourceLoader
H A DResourceLoadNotifier.h51 void didReceiveAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
H A DSubresourceLoader.h60 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/curl/
H A DSocketStreamHandleCurl.cpp69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) function in class:WebCore::SocketStreamHandle
H A DSocketStreamHandle.h60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/win/
H A DSocketStreamHandleWin.cpp69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&) function in class:WebCore::SocketStreamHandle
H A DSocketStreamHandle.h60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.cpp45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy, AuthenticationChallengeProxy* authenticationChallengeProxy) function in class:WebKit::WebDownloadClient
47 if (!m_client.didReceiveAuthenticationChallenge)
50 m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(authenticationChallengeProxy), m_client.clientInfo);
H A DWebDownloadClient.h47 void didReceiveAuthenticationChallenge(WebContext*, DownloadProxy*, AuthenticationChallengeProxy*);
/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 DSocketStreamHandle.h61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/chromium/
H A DSocketStreamHandle.h61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/qt/
H A DSocketStreamHandle.h66 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID) function in class:WebKit::DownloadProxy
102 m_webContext->downloadClient().didReceiveAuthenticationChallenge(m_webContext, this, authenticationChallengeProxy.get());
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.cpp76 void Download::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge) function in class:WebKit::Download
78 AuthenticationManager::shared().didReceiveAuthenticationChallenge(this, authenticationChallenge);
/external/webkit/Source/WebCore/platform/network/soup/
H A DSocketStreamHandle.h71 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebResourceLoadDelegate.h86 @method webView:resource:didReceiveAuthenticationChallenge:fromDataSource:
94 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
/external/webkit/Source/WebKit/mac/Misc/
H A DWebDownload.mm113 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
124 if ([realDelegate respondsToSelector:@selector(download:didReceiveAuthenticationChallenge:)]) {
125 [realDelegate download:download didReceiveAuthenticationChallenge:challenge];
/external/webkit/Source/WebKit/chromium/src/
H A DSocketStreamHandle.cpp218 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge) function in class:WebCore::SocketStreamHandle
221 m_client->didReceiveAuthenticationChallenge(this, challenge);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebResourceLoadDelegate.idl98 @method webView:resource:didReceiveAuthenticationChallenge:fromDataSource:
105 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
107 HRESULT didReceiveAuthenticationChallenge([in] IWebView* webView, [in] unsigned long identifier,[in] IWebURLAuthenticationChallenge* challenge, [in] IWebDataSource* dataSource);

Completed in 439 milliseconds

123