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

1 2

  /external/webkit/Source/WebCore/platform/network/
ProtectionSpaceHash.h 29 #include "ProtectionSpace.h"
35 static unsigned hash(const ProtectionSpace& protectionSpace)
38 protectionSpace.host().impl() ? protectionSpace.host().impl()->hash() : 0,
39 protectionSpace.port(),
40 protectionSpace.serverType(),
41 protectionSpace.authenticationScheme(),
42 protectionSpace.realm().impl() ? protectionSpace.realm().impl()->hash() :
    [all...]
AuthenticationChallengeBase.cpp 38 AuthenticationChallengeBase::AuthenticationChallengeBase(const ProtectionSpace& protectionSpace,
44 , m_protectionSpace(protectionSpace)
62 const ProtectionSpace& AuthenticationChallengeBase::protectionSpace() const
95 if (a.protectionSpace() != b.protectionSpace())
CredentialStorage.cpp 40 typedef HashMap<ProtectionSpace, Credential> ProtectionSpaceToCredentialMap;
53 typedef HashMap<String, ProtectionSpace> PathToDefaultProtectionSpaceMap;
86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url)
88 ASSERT(protectionSpace.isProxy() || url.protocolInHTTPFamily());
89 ASSERT(protectionSpace.isProxy() || url.isValid());
91 protectionSpaceToCredentialMap().set(protectionSpace, credential);
92 if (!protectionSpace.isProxy()) {
95 ProtectionSpaceAuthenticationScheme scheme = protectionSpace.authenticationScheme();
98 pathToDefaultProtectionSpaceMap().set(protectionSpaceMapKeyFromURL(url), protectionSpace);
    [all...]
AuthenticationChallengeBase.h 29 #include "ProtectionSpace.h"
40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
44 const ProtectionSpace& protectionSpace() const;
58 ProtectionSpace m_protectionSpace;
  /external/webkit/Source/WebCore/platform/network/mac/
CredentialStorageMac.mm 34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
36 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
AuthenticationMac.mm 33 #import "ProtectionSpace.h"
99 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
104 : AuthenticationChallengeBase(protectionSpace,
113 : AuthenticationChallengeBase(core([challenge protectionSpace]),
158 return [[[NSURLAuthenticationChallenge alloc] initWithProtectionSpace:mac(coreChallenge.protectionSpace())
166 NSURLProtectionSpace *mac(const ProtectionSpace& coreSpace)
280 ProtectionSpace core(NSURLProtectionSpace *macSpace)
333 return ProtectionSpace([macSpace host], [macSpace port], serverType, [macSpace realm], scheme);
  /external/webkit/Source/WebCore/platform/network/cf/
CredentialStorageCFNet.cpp 33 #include "ProtectionSpace.h"
39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
41 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace));
AuthenticationCF.cpp 34 #include "ProtectionSpace.h"
46 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
51 : AuthenticationChallengeBase(protectionSpace,
84 CFURLProtectionSpaceRef protectionSpace = createCF(coreChallenge.protectionSpace());
87 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential,
91 CFRelease(protectionSpace);
121 CFURLProtectionSpaceRef createCF(const ProtectionSpace& coreSpace)
208 ProtectionSpace core(CFURLProtectionSpaceRef cfSpace
    [all...]
AuthenticationChallenge.h 49 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
  /external/webkit/Source/WebCore/platform/network/curl/
AuthenticationChallenge.h 40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/platform/network/qt/
AuthenticationChallenge.h 40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/platform/network/soup/
AuthenticationChallenge.h 39 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
40 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/platform/network/win/
AuthenticationChallenge.h 38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
39 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebProtectionSpace.h 30 #include <WebCore/ProtectionSpace.h>
39 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace)
41 return adoptRef(new WebProtectionSpace(protectionSpace));
54 WebProtectionSpace(const WebCore::ProtectionSpace&);
58 WebCore::ProtectionSpace m_coreProtectionSpace;
AuthenticationChallengeProxy.cpp 90 WebProtectionSpace* AuthenticationChallengeProxy::protectionSpace() const
93 m_webProtectionSpace = WebProtectionSpace::create(m_coreAuthenticationChallenge.protectionSpace());
AuthenticationChallengeProxy.h 62 WebProtectionSpace* protectionSpace() const;
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKAuthenticationChallenge.cpp 48 return toAPI(toImpl(challenge)->protectionSpace());
  /external/webkit/Source/WebKit/mac/WebView/
WebResourceLoadDelegatePrivate.h 50 @param protectionSpace an NSURLProtectionSpace that will be used to generate an authentication challenge
51 @result Return YES if the resource load delegate is prepared to respond to an authentication challenge generated with protectionSpace, NO otherwise
53 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource;
  /external/webkit/Source/WebKit/win/
WebURLProtectionSpace.cpp 37 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace)
39 , m_protectionSpace(protectionSpace)
53 WebURLProtectionSpace* instance = new WebURLProtectionSpace(ProtectionSpace());
58 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& protectionSpace)
60 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace);
168 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType,
198 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType,
280 const ProtectionSpace& WebURLProtectionSpace::protectionSpace() cons
    [all...]
WebURLAuthenticationChallenge.cpp 150 m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->credential(),
209 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::protectionSpace(
212 *result = WebURLProtectionSpace::createInstance(m_authenticationChallenge.protectionSpace());
WebURLAuthenticationChallenge.h 71 virtual HRESULT STDMETHODCALLTYPE protectionSpace(
WebURLProtectionSpace.h 30 #include <WebCore/ProtectionSpace.h>
36 static WebURLProtectionSpace* createInstance(const WebCore::ProtectionSpace&);
38 WebURLProtectionSpace(const WebCore::ProtectionSpace&);
86 const WebCore::ProtectionSpace& protectionSpace() const;
91 WebCore::ProtectionSpace m_protectionSpace;
  /external/webkit/Source/WebCore/loader/
ResourceLoader.h 47 class ProtectionSpace;
99 virtual bool canAuthenticateAgainstProtectionSpace(const ProtectionSpace&);
121 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpace(protectionSpace); }
  /external/webkit/Source/WebKit/mac/Panels/
WebPanelAuthenticationHandler.m 92 NSURLCredential *latestCredential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:[challenge protectionSpace]];
  /external/webkit/Source/WebKit2/UIProcess/
WebLoaderClient.cpp 150 bool WebLoaderClient::canAuthenticateAgainstProtectionSpaceInFrame(WebPageProxy* page, WebFrameProxy* frame, WebProtectionSpace* protectionSpace)
155 return m_client.canAuthenticateAgainstProtectionSpaceInFrame(toAPI(page), toAPI(frame), toAPI(protectionSpace), m_client.clientInfo);

Completed in 1378 milliseconds

1 2