Home
last modified time | relevance | path

Searched refs:protectionSpace (Results 1 – 25 of 47) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/
DProtectionSpaceHash.h35 static unsigned hash(const ProtectionSpace& protectionSpace) in hash()
38 protectionSpace.host().impl() ? protectionSpace.host().impl()->hash() : 0, in hash()
39 protectionSpace.port(), in hash()
40 protectionSpace.serverType(), in hash()
41 protectionSpace.authenticationScheme(), in hash()
42 protectionSpace.realm().impl() ? protectionSpace.realm().impl()->hash() : 0 in hash()
47 if (protectionSpace.isProxy()) in hash()
DCredentialStorage.cpp86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, c… in set() argument
88 ASSERT(protectionSpace.isProxy() || url.protocolInHTTPFamily()); in set()
89 ASSERT(protectionSpace.isProxy() || url.isValid()); in set()
91 protectionSpaceToCredentialMap().set(protectionSpace, credential); in set()
92 if (!protectionSpace.isProxy()) { in set()
95 ProtectionSpaceAuthenticationScheme scheme = protectionSpace.authenticationScheme(); in set()
98 … pathToDefaultProtectionSpaceMap().set(protectionSpaceMapKeyFromURL(url), protectionSpace); in set()
103 Credential CredentialStorage::get(const ProtectionSpace& protectionSpace) in get() argument
105 return protectionSpaceToCredentialMap().get(protectionSpace); in get()
108 void CredentialStorage::remove(const ProtectionSpace& protectionSpace) in remove() argument
[all …]
DAuthenticationChallengeBase.cpp38 AuthenticationChallengeBase::AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, in AuthenticationChallengeBase() argument
44 , m_protectionSpace(protectionSpace) in AuthenticationChallengeBase()
62 const ProtectionSpace& AuthenticationChallengeBase::protectionSpace() const in protectionSpace() function in WebCore::AuthenticationChallengeBase
95 if (a.protectionSpace() != b.protectionSpace()) in compare()
DAuthenticationChallengeBase.h40 …AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCred…
44 const ProtectionSpace& protectionSpace() const;
/external/webkit/Source/WebCore/platform/network/cf/
DAuthenticationCF.cpp46 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace, in AuthenticationChallenge() argument
51 : AuthenticationChallengeBase(protectionSpace, in AuthenticationChallenge()
84 CFURLProtectionSpaceRef protectionSpace = createCF(coreChallenge.protectionSpace()); in createCF() local
87 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential, in createCF()
91 CFRelease(protectionSpace); in createCF()
DCredentialStorageCFNet.cpp39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) in getFromPersistentStorage() argument
41 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace)); in getFromPersistentStorage()
DSocketStreamHandleCFNet.cpp352 static bool getStoredCONNECTProxyCredentials(const ProtectionSpace& protectionSpace, String& login,… in getStoredCONNECTProxyCredentials() argument
355 Credential storedCredential = CredentialStorage::getFromPersistentStorage(protectionSpace); in getStoredCONNECTProxyCredentials()
357 storedCredential = CredentialStorage::get(protectionSpace); in getStoredCONNECTProxyCredentials()
398 …ProtectionSpace protectionSpace(String(m_proxyHost.get()), port, ProtectionSpaceProxyHTTPS, String… in addCONNECTCredentials() local
401 …if (!m_sentStoredCredentials && getStoredCONNECTProxyCredentials(protectionSpace, login, password)… in addCONNECTCredentials()
DAuthenticationChallenge.h49 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti…
/external/webkit/Source/WebKit/win/
DWebURLProtectionSpace.cpp37 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace) in WebURLProtectionSpace() argument
39 , m_protectionSpace(protectionSpace) in WebURLProtectionSpace()
58 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& protectionSpace) in createInstance() argument
60 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace); in createInstance()
280 const ProtectionSpace& WebURLProtectionSpace::protectionSpace() const in protectionSpace() function in WebURLProtectionSpace
DWebURLAuthenticationChallenge.cpp150 …m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->cr… in initWithProtectionSpace()
209 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::protectionSpace( in protectionSpace() function in WebURLAuthenticationChallenge
212 *result = WebURLProtectionSpace::createInstance(m_authenticationChallenge.protectionSpace()); in protectionSpace()
DWebURLAuthenticationChallenge.h71 virtual HRESULT STDMETHODCALLTYPE protectionSpace(
DWebURLProtectionSpace.h86 const WebCore::ProtectionSpace& protectionSpace() const;
/external/webkit/Source/WebCore/platform/network/win/
DAuthenticationChallenge.h38 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti… in AuthenticationChallenge() argument
39 …: AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response,… in AuthenticationChallenge()
/external/webkit/Source/WebCore/platform/network/qt/
DAuthenticationChallenge.h40 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti… in AuthenticationChallenge() argument
41 …: AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response,… in AuthenticationChallenge()
/external/webkit/Source/WebCore/platform/network/curl/
DAuthenticationChallenge.h40 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti… in AuthenticationChallenge() argument
41 …: AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response,… in AuthenticationChallenge()
/external/webkit/Source/WebCore/platform/network/soup/
DAuthenticationChallenge.h39 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti… in AuthenticationChallenge() argument
40 …: AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response,… in AuthenticationChallenge()
/external/webkit/Source/WebKit2/UIProcess/Authentication/
DWebProtectionSpace.h39 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace) in create() argument
41 return adoptRef(new WebProtectionSpace(protectionSpace)); in create()
DAuthenticationChallengeProxy.cpp90 WebProtectionSpace* AuthenticationChallengeProxy::protectionSpace() const in protectionSpace() function in WebKit::AuthenticationChallengeProxy
93 …m_webProtectionSpace = WebProtectionSpace::create(m_coreAuthenticationChallenge.protectionSpace()); in protectionSpace()
DAuthenticationChallengeProxy.h62 WebProtectionSpace* protectionSpace() const;
/external/webkit/Source/WebCore/platform/network/mac/
DCredentialStorageMac.mm34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
36 …edentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
DAuthenticationMac.mm99 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
104 : AuthenticationChallengeBase(protectionSpace,
113 : AuthenticationChallengeBase(core([challenge protectionSpace]),
158 …[[[NSURLAuthenticationChallenge alloc] initWithProtectionSpace:mac(coreChallenge.protectionSpace())
/external/webkit/Source/WebCore/loader/
DResourceLoader.h121 …ourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpa… in canAuthenticateAgainstProtectionSpace() argument
/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKAuthenticationChallenge.cpp48 return toAPI(toImpl(challenge)->protectionSpace()); in WKAuthenticationChallengeGetProtectionSpace()
/external/webkit/Source/WebKit/mac/WebView/
DWebResourceLoadDelegatePrivate.h53 …tifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource…
/external/webkit/Source/WebKit2/Shared/
DWebCoreArgumentCoders.h125 …encoder->encode(CoreIPC::In(challenge.protectionSpace(), challenge.proposedCredential(), challenge…
130 WebCore::ProtectionSpace protectionSpace;
136 …if (!decoder->decode(CoreIPC::Out(protectionSpace, proposedCredential, previousFailureCount, failu…
139 …challenge = WebCore::AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureC…

12