/external/webkit/Source/WebCore/platform/network/ |
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...] |
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); }
|
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...] |
AuthenticationChallengeBase.cpp | 38 AuthenticationChallengeBase::AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, 44 , m_protectionSpace(protectionSpace) 62 const ProtectionSpace& AuthenticationChallengeBase::protectionSpace() const 95 if (a.protectionSpace() != b.protectionSpace())
|
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;
|
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&);
|
/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;
|
AuthenticationChallengeProxy.cpp | 90 WebProtectionSpace* AuthenticationChallengeProxy::protectionSpace() const 93 m_webProtectionSpace = WebProtectionSpace::create(m_coreAuthenticationChallenge.protectionSpace());
|
/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/cf/ |
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...] |
AuthenticationCF.h | 40 class ProtectionSpace; 44 CFURLProtectionSpaceRef createCF(const ProtectionSpace&); 47 ProtectionSpace core(CFURLProtectionSpaceRef);
|
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/ |
CredentialStorageMac.mm | 34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) 36 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
|
AuthenticationMac.h | 40 class ProtectionSpace; 43 NSURLProtectionSpace *mac(const ProtectionSpace&); 47 ProtectionSpace core(NSURLProtectionSpace *);
|
AuthenticationMac.mm | 33 #import "ProtectionSpace.h" 99 AuthenticationChallenge::AuthenticationChallenge(const ProtectionSpace& protectionSpace, 104 : AuthenticationChallengeBase(protectionSpace, 113 : AuthenticationChallengeBase(core([challenge protectionSpace]), 158 return [[[NSURLAuthenticationChallenge alloc] initWithProtectionSpace:mac(coreChallenge.protectionSpace()) 166 NSURLProtectionSpace *mac(const ProtectionSpace& coreSpace) 280 ProtectionSpace core(NSURLProtectionSpace *macSpace) 333 return ProtectionSpace([macSpace host], [macSpace port], serverType, [macSpace realm], scheme);
|
/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/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/qt/ |
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)
|
CredentialStorageQt.cpp | 33 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace&)
|
/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/WebKit/mac/WebView/ |
WebResourceLoadDelegatePrivate.h | 50 @param protectionSpace an NSURLProtectionSpace that will be used to generate an authentication challenge 51 @result Return YES if the resource load delegate is prepared to respond to an authentication challenge generated with protectionSpace, NO otherwise 53 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource;
|
/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); }
|