Searched defs:protectionSpace (Results 1 - 22 of 22) sorted by relevance

/external/webkit/Source/WebCore/platform/network/cf/
H A DCredentialStorageCFNet.cpp39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) argument
41 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace));
H A DAuthenticationCF.cpp46 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace, argument
51 : AuthenticationChallengeBase(protectionSpace,
84 CFURLProtectionSpaceRef protectionSpace = createCF(coreChallenge.protectionSpace()); local
87 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential,
91 CFRelease(protectionSpace);
H A DSocketStreamHandleCFNet.cpp352 static bool getStoredCONNECTProxyCredentials(const ProtectionSpace& protectionSpace, String& login, String& password) argument
355 Credential storedCredential = CredentialStorage::getFromPersistentStorage(protectionSpace);
357 storedCredential = CredentialStorage::get(protectionSpace);
398 ProtectionSpace protectionSpace(String(m_proxyHost.get()), port, ProtectionSpaceProxyHTTPS, String(realmCF.get()), authenticationSchemeFromAuthenticationMethod(methodCF.get()));
401 if (!m_sentStoredCredentials && getStoredCONNECTProxyCredentials(protectionSpace, login, password)) {
/external/webkit/Source/WebCore/platform/network/qt/
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/Source/WebCore/platform/network/win/
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/Source/WebKit2/UIProcess/Authentication/
H A DWebProtectionSpace.h39 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace) argument
41 return adoptRef(new WebProtectionSpace(protectionSpace));
H A DAuthenticationChallengeProxy.cpp90 WebProtectionSpace* AuthenticationChallengeProxy::protectionSpace() const function in class:WebKit::AuthenticationChallengeProxy
93 m_webProtectionSpace = WebProtectionSpace::create(m_coreAuthenticationChallenge.protectionSpace());
/external/webkit/Source/WebCore/platform/network/
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 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 DCredentialStorage.cpp86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url) argument
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); local
103 Credential CredentialStorage::get(const ProtectionSpace& protectionSpace) argument
105 return protectionSpaceToCredentialMap().get(protectionSpace);
108 void CredentialStorage::remove(const ProtectionSpace& protectionSpace) argument
[all...]
/external/webkit/Source/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/Source/WebCore/platform/network/soup/
H A DAuthenticationChallenge.h39 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
40 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/Source/WebKit/win/
H A DWebURLAuthenticationChallenge.cpp150 m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->credential(),
209 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::protectionSpace( function in class:WebURLAuthenticationChallenge
212 *result = WebURLProtectionSpace::createInstance(m_authenticationChallenge.protectionSpace());
H A DWebURLProtectionSpace.cpp37 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace) argument
39 , m_protectionSpace(protectionSpace)
58 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& protectionSpace) argument
60 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace);
280 const ProtectionSpace& WebURLProtectionSpace::protectionSpace() const function in class:WebURLProtectionSpace
/external/webkit/Source/WebKit2/UIProcess/
H A DWebLoaderClient.cpp150 bool WebLoaderClient::canAuthenticateAgainstProtectionSpaceInFrame(WebPageProxy* page, WebFrameProxy* frame, WebProtectionSpace* protectionSpace) argument
155 return m_client.canAuthenticateAgainstProtectionSpaceInFrame(toAPI(page), toAPI(frame), toAPI(protectionSpace), m_client.clientInfo);
H A DWebPageProxy.cpp2856 RefPtr<WebProtectionSpace> protectionSpace = WebProtectionSpace::create(coreProtectionSpace); local
2858 canAuthenticate = m_loaderClient.canAuthenticateAgainstProtectionSpaceInFrame(this, frame, protectionSpace.get());
/external/webkit/Source/WebCore/loader/
H A DResourceLoader.cpp490 bool ResourceLoader::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace) argument
493 return frameLoader()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
H A DResourceLoader.h121 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpace(protectionSpace); } argument
H A DFrameLoader.cpp3401 bool FrameLoader::canAuthenticateAgainstProtectionSpace(ResourceLoader* loader, const ProtectionSpace& protectionSpace) argument
3403 return m_client->canAuthenticateAgainstProtectionSpace(loader->documentLoader(), loader->identifier(), protectionSpace);
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h125 encoder->encode(CoreIPC::In(challenge.protectionSpace(), challenge.proposedCredential(), challenge.previousFailureCount(), challenge.failureResponse(), challenge.error()));
130 WebCore::ProtectionSpace protectionSpace; local
136 if (!decoder->decode(CoreIPC::Out(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error)))
139 challenge = WebCore::AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp198 bool WebFrameLoaderClient::canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long, const ProtectionSpace& protectionSpace) argument
208 if (!webPage->sendSync(Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame(m_frame->frameID(), protectionSpace), Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame::Reply(canAuthenticate)))
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 5167 milliseconds