HomeSort by relevance Sort by last modified time
    Searched full:protectionspace (Results 26 - 50 of 69) sorted by null

12 3

  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h 46 #include <WebCore/ProtectionSpace.h>
125 encoder->encode(CoreIPC::In(challenge.protectionSpace(), challenge.proposedCredential(), challenge.previousFailureCount(), challenge.failureResponse(), challenge.error()));
130 WebCore::ProtectionSpace protectionSpace;
136 if (!decoder->decode(CoreIPC::Out(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error)))
139 challenge = WebCore::AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error);
145 template<> struct ArgumentCoder<WebCore::ProtectionSpace> {
146 static void encode(ArgumentEncoder* encoder, const WebCore::ProtectionSpace& space)
151 static bool decode(ArgumentDecoder* decoder, WebCore::ProtectionSpace& space)
162 space = WebCore::ProtectionSpace(host, port, static_cast<WebCore::ProtectionSpaceServerType>(serverType), realm, static_cast<WebCor (…)
    [all...]
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleClient.h 53 class ProtectionSpace;
92 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&) { return false; }
ResourceHandle.h 85 class ProtectionSpace;
128 bool canAuthenticateAgainstProtectionSpace(const ProtectionSpace&);
  /external/webkit/Source/WebCore/platform/network/chromium/
AuthenticationChallenge.h 39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKAuthenticationChallenge.cpp 48 return toAPI(toImpl(challenge)->protectionSpace());
WKAPICast.h 45 #include <WebCore/ProtectionSpace.h>
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebProtectionSpace.cpp 33 WebProtectionSpace::WebProtectionSpace(const WebCore::ProtectionSpace& coreProtectionSpace)
AuthenticationChallengeProxy.h 62 WebProtectionSpace* protectionSpace() const;
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 124 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&);
630 CredentialStorage::remove(challenge.protectionSpace());
634 Credential credential = CredentialStorage::get(challenge.protectionSpace());
639 CredentialStorage::set(credential, challenge.protectionSpace(), firstRequest().url());
667 bool ResourceHandle::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace)
670 return client()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
695 if (credential.persistence() == CredentialPersistenceForSession && (!d->m_needsSiteSpecificQuirks || ![[[mac(challenge) protectionSpace] host] isEqualToString:@"gallery.me.com"])) {
703 CredentialStorage::set(webCredential, core([d->m_currentMacChallenge protectionSpace]), urlToStore);
864 - (BOOL)connection:(NSURLConnection *)unusedConnection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
    [all...]
  /external/webkit/Source/WebKit/win/
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(
  /external/webkit/Source/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 38 #include "ProtectionSpace.h"
352 static bool getStoredCONNECTProxyCredentials(const ProtectionSpace& protectionSpace, String& login, String& password)
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)) {
ResourceHandleCFNet.cpp 524 CredentialStorage::set(core(credential.get()), challenge.protectionSpace(), urlToStore);
538 CredentialStorage::remove(challenge.protectionSpace());
542 Credential credential = CredentialStorage::get(challenge.protectionSpace());
547 CredentialStorage::set(credential, challenge.protectionSpace(), firstRequest().url());
585 CredentialStorage::set(webCredential, challenge.protectionSpace(), urlToStore);
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl 84 - (NSURLProtectionSpace *)protectionSpace
86 HRESULT protectionSpace([out, retval] IWebURLProtectionSpace** result);
  /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);
WebPageProxy.messages.in 172 CanAuthenticateAgainstProtectionSpaceInFrame(uint64_t frameID, WebCore::ProtectionSpace protectionSpace) -> (bool canAuthenticate)
  /external/webkit/Source/WebKit/mac/Misc/
WebDownload.mm 36 #import <WebCore/ProtectionSpace.h>
117 NSURLCredential *credential = mac(CredentialStorage::get(core([challenge protectionSpace])));
  /external/webkit/Source/WebCore/loader/
FrameLoader.h 72 class ProtectionSpace;
157 bool canAuthenticateAgainstProtectionSpace(ResourceLoader* loader, const ProtectionSpace& protectionSpace);
ResourceLoader.cpp 490 bool ResourceLoader::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace)
493 return frameLoader()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
FrameLoaderClient.h 77 class ProtectionSpace;
123 virtual bool canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long identifier, const ProtectionSpace&) = 0;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 45 class ProtectionSpace;
83 virtual bool canAuthenticateAgainstProtectionSpace(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ProtectionSpace&);
  /external/webkit/Source/WebKit/mac/Panels/
WebPanelAuthenticationHandler.m 92 NSURLCredential *latestCredential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:[challenge protectionSpace]];
  /external/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 55 #import <WebCore/ProtectionSpace.h>
1025 RetainPtr<NSURLProtectionSpace> protectionSpace(AdoptNS, [[NSURLProtectionSpace alloc] initWithHost:host port:port protocol:protocol realm:realm authenticationMethod:authenticationMethod]);
1027 NSURLCredential *credential = mac(CredentialStorage::get(core(protectionSpace.get())));
1029 credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:protectionSpace.get()];
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 116 WKCFURLCredentialRef wkCopyCredentialFromCFPersistentStorage(CFURLProtectionSpaceRef protectionSpace);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 226 - (BOOL)download:(NSURLDownload *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace

Completed in 702 milliseconds

12 3