HomeSort by relevance Sort by last modified time
    Searched refs:didReceiveAuthenticationChallenge (Results 26 - 50 of 63) sorted by null

12 3

  /external/webkit/Source/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/Source/WebKit/chromium/src/
SocketStreamHandle.cpp 218 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
221 m_client->didReceiveAuthenticationChallenge(this, challenge);
  /external/webkit/Source/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);
IWebDownload.idl 143 HRESULT didReceiveAuthenticationChallenge([in] IWebDownload* download, [in] IWebURLAuthenticationChallenge* challenge);
  /external/webkit/Source/WebCore/loader/
DocumentThreadableLoader.h 85 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&);
SubresourceLoader.cpp 256 void SubresourceLoader::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
263 m_client->didReceiveAuthenticationChallenge(this, challenge);
266 // If that's the case, don't call didReceiveAuthenticationChallenge.
274 ResourceLoader::didReceiveAuthenticationChallenge(challenge);
ResourceLoader.cpp 473 void ResourceLoader::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
478 frameLoader()->notifier()->didReceiveAuthenticationChallenge(this, challenge);
ResourceLoadNotifier.cpp 50 void ResourceLoadNotifier::didReceiveAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.h 79 void didReceiveAuthenticationChallenge(const WebCore::AuthenticationChallenge&);
  /external/webkit/Tools/DumpRenderTree/win/
ResourceLoadDelegate.h 61 virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge(
  /external/webkit/Source/WebCore/loader/icon/
IconLoader.cpp 127 void IconLoader::didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&)
  /external/webkit/Source/WebKit/win/
WebDownload.h 113 void didReceiveAuthenticationChallenge(CFURLAuthChallengeRef);
WebDownloadCFNet.cpp 381 void WebDownload::didReceiveAuthenticationChallenge(CFURLAuthChallengeRef challenge)
396 if (SUCCEEDED(m_delegate->didReceiveAuthenticationChallenge(this, webChallenge.get())))
523 { ((WebDownload*)clientInfo)->didReceiveAuthenticationChallenge(challenge); }
DefaultDownloadDelegate.cpp 157 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didReceiveAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge)
159 LOG(Download, "DefaultDownloadDelegate %p - didReceiveAuthenticationChallenge %p", download, challenge);
  /external/webkit/Source/WebCore/platform/network/
ResourceHandle.h 119 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandleBrew.cpp 210 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleCurl.cpp 205 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandleQt.cpp 183 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebKit/android/jni/
WebCoreFrameBridge.h 116 void didReceiveAuthenticationChallenge(WebUrlLoaderClient*, const std::string& host, const std::string& realm, bool useCachedCredentials, bool suppressDialog);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 233 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
236 _download->didReceiveAuthenticationChallenge(core(challenge));
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 94 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&);
283 handle->didReceiveAuthenticationChallenge(AuthenticationChallenge(challenge, handle));
402 // Credentials for ftp can only be passed in URL, the didReceiveAuthenticationChallenge delegate call won't be made.
506 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
508 LOG(Network, "CFNet - didReceiveAuthenticationChallenge()");
559 client()->didReceiveAuthenticationChallenge(this, d->m_currentWebChallenge);
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 118 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&);
221 // Credentials for ftp can only be passed in URL, the connection:didReceiveAuthenticationChallenge: delegate call won't be made.
602 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
653 client()->didReceiveAuthenticationChallenge(this, d->m_currentWebChallenge);
839 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
843 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connection, challenge);
848 m_handle->didReceiveAuthenticationChallenge(core(challenge));
    [all...]
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandleSoup.cpp 199 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 89 WKContextDownloadDidReceiveAuthenticationChallengeCallback didReceiveAuthenticationChallenge;
  /external/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 175 - (void)webView:(WebView *)wv resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
178 NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet", identifier];
191 NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Responding with %@:%@", identifier, nsUser, nsPassword];

Completed in 1232 milliseconds

12 3