/external/webkit/Source/WebCore/platform/network/ |
D | ProtectionSpaceHash.h | 35 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()
|
D | CredentialStorage.cpp | 86 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 …]
|
D | AuthenticationChallengeBase.cpp | 38 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()
|
D | AuthenticationChallengeBase.h | 40 …AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCred… 44 const ProtectionSpace& protectionSpace() const;
|
/external/webkit/Source/WebCore/platform/network/cf/ |
D | AuthenticationCF.cpp | 46 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()
|
D | CredentialStorageCFNet.cpp | 39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) in getFromPersistentStorage() argument 41 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace)); in getFromPersistentStorage()
|
D | SocketStreamHandleCFNet.cpp | 352 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()
|
D | AuthenticationChallenge.h | 49 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti…
|
/external/webkit/Source/WebKit/win/ |
D | WebURLProtectionSpace.cpp | 37 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
|
D | WebURLAuthenticationChallenge.cpp | 150 …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()
|
D | WebURLAuthenticationChallenge.h | 71 virtual HRESULT STDMETHODCALLTYPE protectionSpace(
|
D | WebURLProtectionSpace.h | 86 const WebCore::ProtectionSpace& protectionSpace() const;
|
/external/webkit/Source/WebCore/platform/network/win/ |
D | AuthenticationChallenge.h | 38 …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/ |
D | AuthenticationChallenge.h | 40 …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/ |
D | AuthenticationChallenge.h | 40 …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/ |
D | AuthenticationChallenge.h | 39 …AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredenti… in AuthenticationChallenge() argument 40 …: AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response,… in AuthenticationChallenge()
|
/external/webkit/Source/WebKit2/UIProcess/Authentication/ |
D | WebProtectionSpace.h | 39 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace) in create() argument 41 return adoptRef(new WebProtectionSpace(protectionSpace)); in create()
|
D | AuthenticationChallengeProxy.cpp | 90 WebProtectionSpace* AuthenticationChallengeProxy::protectionSpace() const in protectionSpace() function in WebKit::AuthenticationChallengeProxy 93 …m_webProtectionSpace = WebProtectionSpace::create(m_coreAuthenticationChallenge.protectionSpace()); in protectionSpace()
|
D | AuthenticationChallengeProxy.h | 62 WebProtectionSpace* protectionSpace() const;
|
/external/webkit/Source/WebCore/platform/network/mac/ |
D | CredentialStorageMac.mm | 34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) 36 …edentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
|
D | AuthenticationMac.mm | 99 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/ |
D | ResourceLoader.h | 121 …ourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpa… in canAuthenticateAgainstProtectionSpace() argument
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
D | WKAuthenticationChallenge.cpp | 48 return toAPI(toImpl(challenge)->protectionSpace()); in WKAuthenticationChallengeGetProtectionSpace()
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebResourceLoadDelegatePrivate.h | 53 …tifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource…
|
/external/webkit/Source/WebKit2/Shared/ |
D | WebCoreArgumentCoders.h | 125 …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…
|