Searched refs:ProtectionSpace (Results 1 - 25 of 45) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.h33 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&);
H A DProtectionSpace.cpp26 #include "ProtectionSpace.h"
38 ProtectionSpace::ProtectionSpace() function in class:WebCore::ProtectionSpace
50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme) function in class:WebCore::ProtectionSpace
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
[all...]
H A DProtectionSpace.h55 class ProtectionSpace { class in namespace:WebCore
58 ProtectionSpace();
59 ProtectionSpace(const String& host, int port, ProtectionSpaceServerType, const String& realm, ProtectionSpaceAuthenticationScheme);
62 ProtectionSpace(WTF::HashTableDeletedValueType) : m_isHashTableDeletedValue(true) { } function in class:WebCore::ProtectionSpace
83 bool operator==(const ProtectionSpace& a, const ProtectionSpace& b);
84 inline bool operator!=(const ProtectionSpace& a, const ProtectionSpace& b) { return !(a == b); }
H A DProtectionSpaceHash.h29 #include "ProtectionSpace.h"
35 static unsigned hash(const ProtectionSpace& protectionSpace)
52 static bool equal(const ProtectionSpace& a, const ProtectionSpace& b) { return a == b; }
60 template<> struct HashTraits<WebCore::ProtectionSpace> : SimpleClassHashTraits<WebCore::ProtectionSpace> { };
63 template<> struct DefaultHash<WebCore::ProtectionSpace> {
H A DAuthenticationChallengeBase.h29 #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;
H A DAuthenticationChallengeBase.cpp38 AuthenticationChallengeBase::AuthenticationChallengeBase(const ProtectionSpace& protectionSpace,
62 const ProtectionSpace& AuthenticationChallengeBase::protectionSpace() const
H A DCredentialStorage.cpp40 typedef HashMap<ProtectionSpace, Credential> ProtectionSpaceToCredentialMap;
53 typedef HashMap<String, ProtectionSpace> PathToDefaultProtectionSpaceMap;
86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url)
103 Credential CredentialStorage::get(const ProtectionSpace& protectionSpace)
108 void CredentialStorage::remove(const ProtectionSpace& protectionSpace)
H A DResourceHandleClient.h53 class ProtectionSpace;
92 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&) { return false; } argument
/external/webkit/Source/WebCore/platform/network/qt/
H A DCredentialStorageQt.cpp33 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace&) argument
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.h40 class ProtectionSpace;
44 CFURLProtectionSpaceRef createCF(const ProtectionSpace&);
47 ProtectionSpace core(CFURLProtectionSpaceRef);
H A DCredentialStorageCFNet.cpp33 #include "ProtectionSpace.h"
39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
H A DAuthenticationCF.cpp34 #include "ProtectionSpace.h"
46 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace,
121 CFURLProtectionSpaceRef createCF(const ProtectionSpace& coreSpace)
208 ProtectionSpace core(CFURLProtectionSpaceRef cfSpace)
266 return ProtectionSpace(CFURLProtectionSpaceGetHost(cfSpace),
H A DAuthenticationChallenge.h49 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
/external/webkit/Source/WebCore/platform/network/mac/
H A DAuthenticationMac.h40 class ProtectionSpace;
43 NSURLProtectionSpace *mac(const ProtectionSpace&);
47 ProtectionSpace core(NSURLProtectionSpace *);
H A DCredentialStorageMac.mm34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DWebProtectionSpace.h30 #include <WebCore/ProtectionSpace.h>
39 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace)
54 WebProtectionSpace(const WebCore::ProtectionSpace&);
58 WebCore::ProtectionSpace m_coreProtectionSpace;
H A DWebProtectionSpace.cpp33 WebProtectionSpace::WebProtectionSpace(const WebCore::ProtectionSpace& coreProtectionSpace)
/external/webkit/Source/WebKit/win/
H A DWebURLProtectionSpace.h30 #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;
H A DWebURLProtectionSpace.cpp37 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace)
53 WebURLProtectionSpace* instance = new WebURLProtectionSpace(ProtectionSpace());
58 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& 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() const
/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)
/external/webkit/Source/WebCore/platform/network/chromium/
H A DAuthenticationChallenge.h39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
/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)
/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)
/external/webkit/Source/WebCore/loader/
H A DResourceLoader.h47 class ProtectionSpace;
99 virtual bool canAuthenticateAgainstProtectionSpace(const ProtectionSpace&);
121 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpace(protectionSpace); }

Completed in 382 milliseconds

12