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

1 2 3

  /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/WebProcess/Authentication/
AuthenticationManager.h 55 void didReceiveAuthenticationChallenge(WebFrame*, const WebCore::AuthenticationChallenge&);
56 void didReceiveAuthenticationChallenge(Download*, const WebCore::AuthenticationChallenge&);
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/
SubresourceLoaderClient.h 55 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&) { }
ResourceLoadNotifier.h 51 void didReceiveAuthenticationChallenge(ResourceLoader*, const AuthenticationChallenge&);
SubresourceLoader.h 60 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
ResourceLoader.h 96 virtual void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
115 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) { didReceiveAuthenticationChallenge(challenge); }
  /external/webkit/Source/WebCore/loader/icon/
IconLoader.h 57 virtual void didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandle.h 61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/chromium/
SocketStreamHandle.h 61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/curl/
SocketStreamHandle.h 60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
SocketStreamHandleCurl.cpp 69 void SocketStreamHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
  /external/webkit/Source/WebCore/platform/network/win/
SocketStreamHandle.h 60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
SocketStreamHandleWin.cpp 69 void SocketStreamHandle::didReceiveAuthenticationChallenge(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);
WebDownloadClient.h 47 void didReceiveAuthenticationChallenge(WebContext*, DownloadProxy*, AuthenticationChallengeProxy*);
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandle.h 66 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandle.h 71 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
  /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());
DownloadProxy.h 73 void didReceiveAuthenticationChallenge(const WebCore::AuthenticationChallenge&, uint64_t challengeID);
  /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/websockets/
WebSocketChannel.h 70 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&);
  /external/webkit/Source/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/Source/WebKit/win/
DefaultDownloadDelegate.h 54 virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge);

Completed in 1234 milliseconds

1 2 3