OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:didreceiveauthenticationchallenge
(Results
1 - 25
of
76
) sorted by null
1
2
3
4
/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));
AuthenticationManager.h
55
void
didReceiveAuthenticationChallenge
(WebFrame*, const WebCore::AuthenticationChallenge&);
56
void
didReceiveAuthenticationChallenge
(Download*, const WebCore::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/WebKit2/WebProcess/Downloads/
Download.cpp
76
void Download::
didReceiveAuthenticationChallenge
(const AuthenticationChallenge& authenticationChallenge)
78
AuthenticationManager::shared().
didReceiveAuthenticationChallenge
(this, authenticationChallenge);
/external/webkit/Source/WebCore/loader/
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.h
96
virtual void
didReceiveAuthenticationChallenge
(const AuthenticationChallenge&);
115
virtual void
didReceiveAuthenticationChallenge
(ResourceHandle*, const AuthenticationChallenge& challenge) {
didReceiveAuthenticationChallenge
(challenge); }
ResourceLoadNotifier.h
51
void
didReceiveAuthenticationChallenge
(ResourceLoader*, const AuthenticationChallenge&);
SubresourceLoader.h
60
virtual void
didReceiveAuthenticationChallenge
(const AuthenticationChallenge&);
SubresourceLoaderClient.h
55
virtual void
didReceiveAuthenticationChallenge
(SubresourceLoader*, const AuthenticationChallenge&) { }
/external/webkit/Source/WebCore/loader/icon/
IconLoader.h
57
virtual void
didReceiveAuthenticationChallenge
(SubresourceLoader*, const AuthenticationChallenge&);
/external/webkit/Source/WebCore/platform/network/
SocketStreamHandleClient.h
53
virtual void
didReceiveAuthenticationChallenge
(SocketStreamHandle*, const AuthenticationChallenge&) { }
/external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.messages.in
25
DidReceiveAuthenticationChallenge
(WebCore::AuthenticationChallenge challenge, uint64_t challengeID)
DownloadProxy.h
73
void
didReceiveAuthenticationChallenge
(const WebCore::AuthenticationChallenge&, uint64_t challengeID);
/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/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];
/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/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/WebCore/platform/network/win/
SocketStreamHandle.h
60
void
didReceiveAuthenticationChallenge
(const AuthenticationChallenge&);
SocketStreamHandleWin.cpp
69
void SocketStreamHandle::
didReceiveAuthenticationChallenge
(const AuthenticationChallenge&)
/external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.h
54
virtual HRESULT STDMETHODCALLTYPE
didReceiveAuthenticationChallenge
(IWebDownload* download, IWebURLAuthenticationChallenge* challenge);
Completed in 812 milliseconds
1
2
3
4