HomeSort by relevance Sort by last modified time
    Searched refs:protectionSpace (Results 26 - 43 of 43) sorted by null

12

  /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/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/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/loader/
ResourceLoader.cpp 490 bool ResourceLoader::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace)
493 return frameLoader()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
FrameLoader.h 72 class ProtectionSpace;
157 bool canAuthenticateAgainstProtectionSpace(ResourceLoader* loader, const ProtectionSpace& protectionSpace);
FrameLoader.cpp     [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl 84 - (NSURLProtectionSpace *)protectionSpace
86 HRESULT protectionSpace([out, retval] IWebURLProtectionSpace** result);
  /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/WebKit/mac/Panels/
WebAuthenticationPanel.m 122 NSURLProtectionSpace *space = [chall protectionSpace];
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 116 WKCFURLCredentialRef wkCopyCredentialFromCFPersistentStorage(CFURLProtectionSpaceRef 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/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 226 - (BOOL)download:(NSURLDownload *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 67 typedef bool (*WKPageCanAuthenticateAgainstProtectionSpaceInFrameCallback)(WKPageRef page, WKFrameRef frame, WKProtectionSpaceRef protectionSpace, const void *clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 198 bool WebFrameLoaderClient::canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long, const ProtectionSpace& protectionSpace)
208 if (!webPage->sendSync(Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame(m_frame->frameID(), protectionSpace), Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame::Reply(canAuthenticate)))
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 423 bool WebFrameLoaderClient::canAuthenticateAgainstProtectionSpace(DocumentLoader* loader, unsigned long identifier, const ProtectionSpace& protectionSpace)
428 NSURLProtectionSpace *webProtectionSpace = mac(protectionSpace);
439 return (protectionSpace.authenticationScheme() < ProtectionSpaceAuthenticationSchemeClientCertificateRequested);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 992 milliseconds

12