HomeSort by relevance Sort by last modified time
    Searched refs:ProtectionSpace (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.h 33 class ProtectionSpace;
38 static void set(const Credential&, const ProtectionSpace&, const KURL&);
39 static Credential get(const ProtectionSpace&);
40 static void remove(const ProtectionSpace&);
43 static Credential getFromPersistentStorage(const ProtectionSpace&);
ProtectionSpace.cpp 26 #include "ProtectionSpace.h"
38 ProtectionSpace::ProtectionSpace()
50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme)
60 const String& ProtectionSpace::host() const
65 int ProtectionSpace::port() const
70 ProtectionSpaceServerType ProtectionSpace::serverType() const
75 bool ProtectionSpace::isProxy() const
83 const String& ProtectionSpace::realm() const
    [all...]
ProtectionSpace.h 55 class ProtectionSpace {
58 ProtectionSpace();
59 ProtectionSpace(const String& host, int port, ProtectionSpaceServerType, const String& realm, ProtectionSpaceAuthenticationScheme);
62 ProtectionSpace(WTF::HashTableDeletedValueType) : m_isHashTableDeletedValue(true) { }
83 bool operator==(const ProtectionSpace& a, const ProtectionSpace& b);
84 inline bool operator!=(const ProtectionSpace& a, const ProtectionSpace& b) { return !(a == b); }
ProtectionSpaceHash.h 29 #include "ProtectionSpace.h"
35 static unsigned hash(const ProtectionSpace& protectionSpace)
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() :
    [all...]
AuthenticationChallengeBase.h 29 #include "ProtectionSpace.h"
40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
44 const ProtectionSpace& protectionSpace() const;
58 ProtectionSpace m_protectionSpace;
AuthenticationChallengeBase.cpp 38 AuthenticationChallengeBase::AuthenticationChallengeBase(const ProtectionSpace& protectionSpace,
44 , m_protectionSpace(protectionSpace)
62 const ProtectionSpace& AuthenticationChallengeBase::protectionSpace() const
95 if (a.protectionSpace() != b.protectionSpace())
ResourceHandleClient.h 53 class ProtectionSpace;
92 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&) { return false; }
CredentialStorage.cpp 40 typedef HashMap<ProtectionSpace, Credential> ProtectionSpaceToCredentialMap;
53 typedef HashMap<String, ProtectionSpace> PathToDefaultProtectionSpaceMap;
86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url)
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);
    [all...]
  /external/webkit/Source/WebCore/platform/network/qt/
CredentialStorageQt.cpp 33 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace&)
AuthenticationChallenge.h 40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationCF.h 40 class ProtectionSpace;
44 CFURLProtectionSpaceRef createCF(const ProtectionSpace&);
47 ProtectionSpace core(CFURLProtectionSpaceRef);
CredentialStorageCFNet.cpp 33 #include "ProtectionSpace.h"
39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
41 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace));
AuthenticationCF.cpp 34 #include "ProtectionSpace.h"
46 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
51 : AuthenticationChallengeBase(protectionSpace,
84 CFURLProtectionSpaceRef protectionSpace = createCF(coreChallenge.protectionSpace());
87 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential,
91 CFRelease(protectionSpace);
121 CFURLProtectionSpaceRef createCF(const ProtectionSpace& coreSpace)
208 ProtectionSpace core(CFURLProtectionSpaceRef cfSpace
    [all...]
AuthenticationChallenge.h 49 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
  /external/webkit/Source/WebCore/platform/network/mac/
AuthenticationMac.h 40 class ProtectionSpace;
43 NSURLProtectionSpace *mac(const ProtectionSpace&);
47 ProtectionSpace core(NSURLProtectionSpace *);
CredentialStorageMac.mm 34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
36 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebProtectionSpace.h 30 #include <WebCore/ProtectionSpace.h>
39 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace)
41 return adoptRef(new WebProtectionSpace(protectionSpace));
54 WebProtectionSpace(const WebCore::ProtectionSpace&);
58 WebCore::ProtectionSpace m_coreProtectionSpace;
WebProtectionSpace.cpp 33 WebProtectionSpace::WebProtectionSpace(const WebCore::ProtectionSpace& coreProtectionSpace)
  /external/webkit/Source/WebKit/win/
WebURLProtectionSpace.h 30 #include <WebCore/ProtectionSpace.h>
36 static WebURLProtectionSpace* createInstance(const WebCore::ProtectionSpace&);
38 WebURLProtectionSpace(const WebCore::ProtectionSpace&);
86 const WebCore::ProtectionSpace& protectionSpace() const;
91 WebCore::ProtectionSpace m_protectionSpace;
WebURLProtectionSpace.cpp 37 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace)
39 , m_protectionSpace(protectionSpace)
53 WebURLProtectionSpace* instance = new WebURLProtectionSpace(ProtectionSpace());
58 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& protectionSpace)
60 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace);
168 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType,
198 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType,
280 const ProtectionSpace& WebURLProtectionSpace::protectionSpace() cons
    [all...]
  /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/WebCore/platform/network/curl/
AuthenticationChallenge.h 40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/platform/network/soup/
AuthenticationChallenge.h 39 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
40 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/platform/network/win/
AuthenticationChallenge.h 38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
39 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
  /external/webkit/Source/WebCore/loader/
ResourceLoader.h 47 class ProtectionSpace;
99 virtual bool canAuthenticateAgainstProtectionSpace(const ProtectionSpace&);
121 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpace(protectionSpace); }

Completed in 959 milliseconds

1 2