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

1 2

  /external/webkit/Source/WebCore/platform/network/curl/
SocketStreamHandleCurl.cpp 69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
ResourceHandleCurl.cpp 205 void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebCore/platform/network/win/
SocketStreamHandleWin.cpp 69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebCore/loader/
SubresourceLoaderClient.h 55 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) { }
ResourceLoadNotifier.cpp 50 void ResourceLoadNotifier::didReceiveAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge)
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);
ResourceLoader.h 96 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
115 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didReceiveAuthenticationChallenge(challenge); }
DocumentThreadableLoader.cpp 297 void DocumentThreadableLoader::didReceiveAuthenticationChallenge(SubresourceLoader* loader, const AuthenticationChallenge& challenge)
  /external/webkit/Source/WebCore/platform/network/
SocketStreamHandleClient.h 53 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
ResourceHandleClient.h 89 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { }
  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp 45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy, AuthenticationChallengeProxy* authenticationChallengeProxy)
47 if (!m_client.didReceiveAuthenticationChallenge)
50 m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(authenticationChallengeProxy), m_client.clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 65 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const AuthenticationChallenge& authenticationChallenge)
73 WebProcess::shared().connection()->send(Messages::WebPageProxy::DidReceiveAuthenticationChallenge(frame->frameID(), authenticationChallenge, challengeID), frame->page()->pageID());
76 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const AuthenticationChallenge& authenticationChallenge)
81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));
  /external/webkit/Source/WebCore/loader/icon/
IconLoader.cpp 127 void IconLoader::didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 76 void Download::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge)
78 AuthenticationManager::shared().didReceiveAuthenticationChallenge(this, authenticationChallenge);
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandleQt.cpp 183 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebKit/chromium/src/
SocketStreamHandle.cpp 218 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge& challenge)
221 m_client->didReceiveAuthenticationChallenge(this, challenge);
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID)
102 m_webContext->downloadClient().didReceiveAuthenticationChallenge(m_webContext, this, authenticationChallengeProxy.get());
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandleBrew.cpp 210 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandleSoup.cpp 199 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.cpp 157 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didReceiveAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge)
159 LOG(Download, "DefaultDownloadDelegate %p - didReceiveAuthenticationChallenge %p", download, challenge);
WebDownloadCFNet.cpp 381 void WebDownload::didReceiveAuthenticationChallenge(CFURLAuthChallengeRef challenge)
396 if (SUCCEEDED(m_delegate->didReceiveAuthenticationChallenge(this, webChallenge.get())))
523 { ((WebDownload*)clientInfo)->didReceiveAuthenticationChallenge(challenge); }
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 228 void WebSocketChannel::didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&)
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 89 WKContextDownloadDidReceiveAuthenticationChallengeCallback didReceiveAuthenticationChallenge;
  /external/webkit/Tools/DumpRenderTree/win/
ResourceLoadDelegate.cpp 286 HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didReceiveAuthenticationChallenge(
297 printf("%S - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet\n", descriptionSuitableForTestResult(identifier).c_str());
305 printf("%S - didReceiveAuthenticationChallenge - Responding with %s:%s\n", descriptionSuitableForTestResult(identifier).c_str(), user, password);

Completed in 361 milliseconds

1 2