HomeSort by relevance Sort by last modified time
    Searched refs:didCancelAuthenticationChallenge (Results 1 - 20 of 20) sorted by null

  /external/webkit/WebCore/platform/network/
SocketStreamHandleClient.h 54 virtual void didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
ResourceHandleClient.h 81 virtual void didCancelAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { }
ResourceHandle.h 132 void didCancelAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/WebCore/loader/
ResourceLoader.h 92 void didCancelAuthenticationChallenge(const AuthenticationChallenge&);
107 virtual void didCancelAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didCancelAuthenticationChallenge(challenge); }
ResourceLoadNotifier.h 51 void didCancelAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
ResourceLoader.cpp 450 void ResourceLoader::didCancelAuthenticationChallenge(const AuthenticationChallenge& challenge)
455 frameLoader()->notifier()->didCancelAuthenticationChallenge(this, challenge);
ResourceLoadNotifier.cpp 55 void ResourceLoadNotifier::didCancelAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge)
  /external/webkit/WebCore/websockets/
WebSocketChannel.h 65 virtual void didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&);
WebSocketChannel.cpp 231 void WebSocketChannel::didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&)
  /external/webkit/WebKit/mac/WebView/
WebResourceLoadDelegate.h 97 @method webView:resource:didCancelAuthenticationChallenge:fromDataSource:
101 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
  /external/webkit/WebKit/win/
DefaultDownloadDelegate.h 52 virtual HRESULT STDMETHODCALLTYPE didCancelAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge);
DefaultDownloadDelegate.cpp 142 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didCancelAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge)
144 LOG(Download, "DefaultDownloadDelegate %p - didCancelAuthenticationChallenge %p", download, challenge);
  /external/webkit/WebKitTools/DumpRenderTree/win/
ResourceLoadDelegate.h 65 virtual HRESULT STDMETHODCALLTYPE didCancelAuthenticationChallenge(
  /external/webkit/WebKit/mac/Misc/
WebDownload.mm 136 - (void)download:(NSURLDownload *)download didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
138 if ([realDelegate respondsToSelector:@selector(download:didCancelAuthenticationChallenge:)]) {
139 [realDelegate download:download didCancelAuthenticationChallenge:challenge];
  /external/webkit/WebKit/win/Interfaces/
IWebResourceLoadDelegate.idl 110 @method webView:resource:didCancelAuthenticationChallenge:fromDataSource:
113 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
115 HRESULT didCancelAuthenticationChallenge([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLAuthenticationChallenge* challenge, [in] IWebDataSource* dataSource);
IWebDownload.idl 137 HRESULT didCancelAuthenticationChallenge([in] IWebDownload* download, [in] IWebURLAuthenticationChallenge* challenge);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 175 - (void)webView:(WebView *)wv resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
  /external/webkit/WebCore/platform/network/mac/
ResourceHandleMac.mm 522 void ResourceHandle::didCancelAuthenticationChallenge(const AuthenticationChallenge& challenge)
529 client()->didCancelAuthenticationChallenge(this, challenge);
687 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
691 LOG(Network, "Handle %p delegate connection:%p didCancelAuthenticationChallenge:%p", m_handle, connection, challenge);
696 m_handle->didCancelAuthenticationChallenge(core(challenge));
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.cpp 172 resourceLoadDelegate->didCancelAuthenticationChallenge(webView, identifier, webChallenge.get(), getWebDataSource(loader));
    [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 429 CallResourceLoadDelegate(implementations->didCancelAuthenticationChallengeFunc, webView, @selector(webView:resource:didCancelAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loader));
    [all...]

Completed in 180 milliseconds