Searched refs:authenticationScheme (Results 1 - 12 of 12) sorted by relevance
/external/webkit/Source/WebCore/platform/network/ |
H A D | ProtectionSpace.cpp | 50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme) argument 55 , m_authenticationScheme(authenticationScheme) 88 ProtectionSpaceAuthenticationScheme ProtectionSpace::authenticationScheme() const function in class:WebCore::ProtectionSpace 117 if (a.authenticationScheme() != b.authenticationScheme())
|
H A D | ProtectionSpace.h | 70 ProtectionSpaceAuthenticationScheme authenticationScheme() const;
|
H A D | ProtectionSpaceHash.h | 41 protectionSpace.authenticationScheme(),
|
H A D | CredentialStorage.cpp | 95 ProtectionSpaceAuthenticationScheme scheme = protectionSpace.authenticationScheme();
|
/external/webkit/Source/WebKit2/UIProcess/Authentication/ |
H A D | WebProtectionSpace.cpp | 68 WebCore::ProtectionSpaceAuthenticationScheme WebProtectionSpace::authenticationScheme() const function in class:WebKit::WebProtectionSpace 70 return m_coreProtectionSpace.authenticationScheme();
|
H A D | WebProtectionSpace.h | 51 WebCore::ProtectionSpaceAuthenticationScheme authenticationScheme() const;
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
H A D | WKProtectionSpace.cpp | 71 return toAPI(toImpl(protectionSpaceRef)->authenticationScheme());
|
/external/webkit/Source/WebCore/platform/network/cf/ |
H A D | AuthenticationCF.cpp | 154 switch (coreSpace.authenticationScheme()) {
|
/external/webkit/Source/WebKit2/Shared/ |
H A D | WebCoreArgumentCoders.h | 148 encoder->encode(CoreIPC::In(space.host(), space.port(), static_cast<uint32_t>(space.serverType()), space.realm(), static_cast<uint32_t>(space.authenticationScheme()))); 157 uint32_t authenticationScheme; local 159 if (!decoder->decode(CoreIPC::Out(host, port, serverType, realm, authenticationScheme))) 162 space = WebCore::ProtectionSpace(host, port, static_cast<WebCore::ProtectionSpaceServerType>(serverType), realm, static_cast<WebCore::ProtectionSpaceAuthenticationScheme>(authenticationScheme));
|
/external/webkit/Source/WebKit/win/ |
H A D | WebURLProtectionSpace.cpp | 102 switch (m_protectionSpace.authenticationScheme()) {
|
/external/webkit/Source/WebCore/platform/network/mac/ |
H A D | AuthenticationMac.mm | 200 switch (coreSpace.authenticationScheme()) {
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
H A D | WebFrameLoaderClient.mm | 439 return (protectionSpace.authenticationScheme() < ProtectionSpaceAuthenticationSchemeClientCertificateRequested);
|
Completed in 533 milliseconds