HomeSort by relevance Sort by last modified time
    Searched full:authenticationchallenge (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 37 #include <WebCore/AuthenticationChallenge.h>
65 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const AuthenticationChallenge& authenticationChallenge)
71 m_challenges.set(challengeID, 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)
79 m_challenges.set(challengeID, authenticationChallenge);
81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));
86 AuthenticationChallenge challenge = m_challenges.take(challengeID)
    [all...]
AuthenticationManager.h 38 class AuthenticationChallenge;
55 void didReceiveAuthenticationChallenge(WebFrame*, const WebCore::AuthenticationChallenge&);
56 void didReceiveAuthenticationChallenge(Download*, const WebCore::AuthenticationChallenge&);
67 typedef HashMap<uint64_t, WebCore::AuthenticationChallenge> AuthenticationChallengeMap;
  /external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
DownloadCurl.cpp 61 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
66 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
71 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
DownloadQt.cpp 65 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
70 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
75 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
DownloadSoup.cpp 66 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
71 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
76 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebCore/platform/network/
AuthenticationChallengeBase.h 35 class AuthenticationChallenge;
51 static bool compare(const AuthenticationChallenge& a, const AuthenticationChallenge& b);
54 // The AuthenticationChallenge subclass may "shadow" this method to compare platform specific fields
65 inline bool operator==(const AuthenticationChallenge& a, const AuthenticationChallenge& b) { return AuthenticationChallengeBase::compare(a, b); }
66 inline bool operator!=(const AuthenticationChallenge& a, const AuthenticationChallenge& b) { return !(a == b); }
AuthenticationClient.h 31 class AuthenticationChallenge;
36 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&) = 0;
37 virtual void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&) = 0;
38 virtual void receivedCancellation(const AuthenticationChallenge&) = 0;
SocketStreamHandleClient.h 37 class AuthenticationChallenge;
53 virtual void didReceiveAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
54 virtual void didCancelAuthenticationChallenge(SocketStreamHandle*, const AuthenticationChallenge&) { }
  /external/webkit/Source/WebCore/platform/network/chromium/
AuthenticationChallengeChromium.cpp 32 #include "AuthenticationChallenge.h"
36 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge&, const AuthenticationChallenge&)
AuthenticationChallenge.h 36 class AuthenticationChallenge : public AuthenticationChallengeBase {
38 AuthenticationChallenge() {}
39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
45 static bool platformCompare(const AuthenticationChallenge&, const AuthenticationChallenge&);
SocketStreamHandle.h 42 class AuthenticationChallenge;
61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
62 void receivedCredential(const AuthenticationChallenge&, const Credential&);
63 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
64 void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationChallenge.h 46 class AuthenticationChallenge : public AuthenticationChallengeBase {
48 AuthenticationChallenge() {}
49 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
51 AuthenticationChallenge(CFURLAuthChallengeRef, AuthenticationClient*);
58 AuthenticationChallenge(NSURLAuthenticationChallenge *);
69 static bool platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge& b);
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallenge.h 30 #include <WebCore/AuthenticationChallenge.h>
35 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&);
36 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
38 WebURLAuthenticationChallenge(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
78 const WebCore::AuthenticationChallenge& authenticationChallenge() const;
83 WebCore::AuthenticationChallenge m_authenticationChallenge;
WebURLAuthenticationChallenge.cpp 45 WebURLAuthenticationChallenge::WebURLAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge,
48 , m_authenticationChallenge(authenticationChallenge)
61 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge)
63 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, 0);
68 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge,
71 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, sender);
147 // FIXME: After we change AuthenticationChallenge to use "ResourceHandle" as the abstract "Sender" or "Source of this Auth Challenge", then we'l
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
AuthenticationChallengeProxy.h 30 #include <WebCore/AuthenticationChallenge.h>
50 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
52 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, process));
66 AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge&, uint64_t challengeID, WebProcessProxy*);
70 WebCore::AuthenticationChallenge m_coreAuthenticationChallenge;
  /external/webkit/Source/WebCore/platform/network/win/
AuthenticationChallenge.h 32 class AuthenticationChallenge : public AuthenticationChallengeBase {
34 AuthenticationChallenge()
38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
SocketStreamHandle.h 42 class AuthenticationChallenge;
60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
62 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
63 void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandle.h 42 class AuthenticationChallenge;
61 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
62 void receivedCredential(const AuthenticationChallenge&, const Credential&);
63 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
64 void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/curl/
SocketStreamHandle.h 42 class AuthenticationChallenge;
60 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
62 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
63 void receivedCancellation(const AuthenticationChallenge&);
AuthenticationChallenge.h 34 class AuthenticationChallenge : public AuthenticationChallengeBase {
36 AuthenticationChallenge()
40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandle.h 47 class AuthenticationChallenge;
66 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
67 void receivedCredential(const AuthenticationChallenge&, const Credential&);
68 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
69 void receivedCancellation(const AuthenticationChallenge&);
AuthenticationChallenge.h 34 class AuthenticationChallenge : public AuthenticationChallengeBase {
36 AuthenticationChallenge()
40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandle.h 42 class AuthenticationChallenge;
71 void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
72 void receivedCredential(const AuthenticationChallenge&, const Credential&);
73 void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
74 void receivedCancellation(const AuthenticationChallenge&);
  /external/webkit/Source/WebCore/platform/network/mac/
AuthenticationMac.mm 30 #import "AuthenticationChallenge.h"
99 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
112 AuthenticationChallenge::AuthenticationChallenge(NSURLAuthenticationChallenge *challenge)
123 void AuthenticationChallenge::setAuthenticationClient(AuthenticationClient* client)
134 AuthenticationClient* AuthenticationChallenge::authenticationClient() const
142 bool AuthenticationChallenge::platformCompare(const AuthenticationChallenge& a, const AuthenticationChallenge& b
    [all...]
AuthenticationMac.h 38 class AuthenticationChallenge;
42 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge&);
46 AuthenticationChallenge core(NSURLAuthenticationChallenge *);

Completed in 293 milliseconds

1 2 3 4 5