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

1 2

  /external/webkit/WebCore/platform/network/
SocketStreamHandleClient.h 53 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
ResourceHandleClient.h 80 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { }
  /external/webkit/WebCore/loader/
SubresourceLoaderClient.h 54 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) { }
SubresourceLoader.h 57 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
ResourceLoader.h 91 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
106 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didReceiveAuthenticationChallenge(challenge); }
ResourceLoadNotifier.h 50 void didReceiveAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
DocumentThreadableLoader.h 80 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&);
SubresourceLoader.cpp 252 void SubresourceLoader::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
257 m_client->didReceiveAuthenticationChallenge(this, challenge);
260 // If that's the case, don't call didReceiveAuthenticationChallenge
264 ResourceLoader::didReceiveAuthenticationChallenge(challenge);
ResourceLoader.cpp 442 void ResourceLoader::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
447 frameLoader()->notifier()->didReceiveAuthenticationChallenge(this, challenge);
  /external/webkit/WebCore/loader/icon/
IconLoader.h 57 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&);
IconLoader.cpp 122 void IconLoader::didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&)
  /external/webkit/WebCore/platform/network/chromium/
SocketStreamHandle.h 61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/WebCore/platform/network/curl/
SocketStreamHandle.h 60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
SocketStreamHandleCurl.cpp 69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/WebCore/platform/network/qt/
SocketStreamHandle.h 62 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/WebCore/platform/network/soup/
SocketStreamHandle.h 60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
SocketStreamHandleSoup.cpp 68 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/WebCore/websockets/
WebSocketChannel.h 64 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&);
  /external/webkit/WebKit/mac/WebView/
WebResourceLoadDelegate.h 86 @method webView:resource:didReceiveAuthenticationChallenge:fromDataSource:
94 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
  /external/webkit/WebKit/win/
DefaultDownloadDelegate.h 55 virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge);
WebDownload.h 113 void didReceiveAuthenticationChallenge(CFURLAuthChallengeRef);
  /external/webkit/WebKitTools/DumpRenderTree/win/
ResourceLoadDelegate.h 59 virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge(
  /external/webkit/WebKit/mac/Misc/
WebDownload.mm 113 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
124 if ([realDelegate respondsToSelector:@selector(download:didReceiveAuthenticationChallenge:)]) {
125 [realDelegate download:download didReceiveAuthenticationChallenge:challenge];
  /external/webkit/WebKit/chromium/src/
SocketStreamHandle.cpp 218 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
221 m_client->didReceiveAuthenticationChallenge(this, challenge);
  /external/webkit/WebKit/win/Interfaces/
IWebResourceLoadDelegate.idl 98 @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 559 milliseconds

1 2