Searched refs:protectionSpace (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/WebCore/platform/network/
H A DProtectionSpaceHash.h35 static unsigned hash(const ProtectionSpace& protectionSpace) argument
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() : 0
47 if (protectionSpace.isProxy())
H A DAuthenticationChallengeBase.cpp38 AuthenticationChallengeBase::AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, argument
44 , m_protectionSpace(protectionSpace)
62 const ProtectionSpace& AuthenticationChallengeBase::protectionSpace() const function in class:WebCore::AuthenticationChallengeBase
95 if (a.protectionSpace() != b.protectionSpace())
H A DCredentialStorage.cpp87 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url) argument
89 ASSERT(protectionSpace.isProxy() || url.protocolInHTTPFamily());
90 ASSERT(protectionSpace.isProxy() || url.isValid());
92 protectionSpaceToCredentialMap().set(protectionSpace, credential);
93 if (!protectionSpace.isProxy()) {
96 ProtectionSpaceAuthenticationScheme scheme = protectionSpace.authenticationScheme();
99 pathToDefaultProtectionSpaceMap().set(protectionSpaceMapKeyFromURL(url), protectionSpace); local
104 Credential CredentialStorage::get(const ProtectionSpace& protectionSpace) argument
106 return protectionSpaceToCredentialMap().get(protectionSpace);
H A DAuthenticationChallengeBase.h40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
44 const ProtectionSpace& protectionSpace() const;
/external/webkit/WebCore/platform/network/mac/
H A DCredentialStorageMac.mm34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
36 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
H A DAuthenticationChallenge.h45 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
H A DAuthenticationMac.mm85 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
90 : AuthenticationChallengeBase(protectionSpace,
99 : AuthenticationChallengeBase(core([challenge protectionSpace]),
136 return [[[NSURLAuthenticationChallenge alloc] initWithProtectionSpace:mac(coreChallenge.protectionSpace())
H A DResourceHandleMac.mm505 Credential credential = CredentialStorage::get(challenge.protectionSpace());
545 if (credential.persistence() == CredentialPersistenceForSession && (!d->m_needsSiteSpecificQuirks || ![[[mac(challenge) protectionSpace] host] isEqualToString:@"gallery.me.com"])) {
553 CredentialStorage::set(webCredential, core([d->m_currentMacChallenge protectionSpace]), urlToStore);
954 CredentialStorage::set(core(credential), core([challenge protectionSpace]), urlToStore);
965 Credential credential = CredentialStorage::get(core([challenge protectionSpace]));
/external/webkit/WebCore/platform/network/cf/
H A DCredentialStorageCFNet.cpp37 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) argument
39 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace));
H A DAuthenticationCF.cpp40 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace, argument
45 : AuthenticationChallengeBase(protectionSpace,
78 CFURLProtectionSpaceRef protectionSpace = createCF(coreChallenge.protectionSpace()); local
81 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential,
85 CFRelease(protectionSpace);
H A DAuthenticationChallenge.h39 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
H A DSocketStreamHandleCFNet.cpp351 static bool getStoredCONNECTProxyCredentials(const ProtectionSpace& protectionSpace, String& login, String& password) argument
354 Credential storedCredential = CredentialStorage::getFromPersistentStorage(protectionSpace);
356 storedCredential = CredentialStorage::get(protectionSpace);
397 ProtectionSpace protectionSpace(String(m_proxyHost.get()), port, ProtectionSpaceProxyHTTPS, String(realmCF.get()), authenticationSchemeFromAuthenticationMethod(methodCF.get()));
400 if (!m_sentStoredCredentials && getStoredCONNECTProxyCredentials(protectionSpace, login, password)) {
/external/webkit/WebCore/platform/network/qt/
H A DAuthenticationChallenge.h38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
39 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/WebCore/platform/network/soup/
H A DAuthenticationChallenge.h38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
39 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/WebCore/platform/network/curl/
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/WebKit/win/
H A DWebURLProtectionSpace.cpp39 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace) argument
41 , m_protectionSpace(protectionSpace)
60 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& protectionSpace) argument
62 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace);
284 const ProtectionSpace& WebURLProtectionSpace::protectionSpace() const function in class:WebURLProtectionSpace
H A DWebURLAuthenticationChallenge.cpp153 m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->credential(),
212 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::protectionSpace( function in class:WebURLAuthenticationChallenge
215 *result = WebURLProtectionSpace::createInstance(m_authenticationChallenge.protectionSpace());
H A DWebURLAuthenticationChallenge.h74 virtual HRESULT STDMETHODCALLTYPE protectionSpace(
H A DWebURLProtectionSpace.h89 const WebCore::ProtectionSpace& protectionSpace() const;
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
H A DWebKitSystemInterface.h92 CFURLCredentialRef wkCopyCredentialFromCFPersistentStorage(CFURLProtectionSpaceRef protectionSpace);
/external/webkit/WebKit/mac/Panels/
H A DWebPanelAuthenticationHandler.m92 NSURLCredential *latestCredential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:[challenge protectionSpace]];
H A DWebAuthenticationPanel.m122 NSURLProtectionSpace *space = [chall protectionSpace];
/external/webkit/WebKit/win/Interfaces/
H A DIWebURLAuthenticationChallenge.idl84 - (NSURLProtectionSpace *)protectionSpace
86 HRESULT protectionSpace([out, retval] IWebURLProtectionSpace** result);
/external/webkit/WebKit/mac/Misc/
H A DWebDownload.mm117 NSURLCredential *credential = mac(CredentialStorage::get(core([challenge protectionSpace])));
/external/webkit/WebKit/mac/Plugins/
H A DWebBaseNetscapePluginView.mm1022 RetainPtr<NSURLProtectionSpace> protectionSpace(AdoptNS, [[NSURLProtectionSpace alloc] initWithHost:host port:port protocol:protocol realm:realm authenticationMethod:authenticationMethod]);
1024 NSURLCredential *credential = mac(CredentialStorage::get(core(protectionSpace.get())));
1026 credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:protectionSpace.get()];

Completed in 127 milliseconds

12