Searched refs:protectionSpace (Results 1 - 25 of 42) sorted by relevance

12

/macosx-10.10.1/WebKit2-7600.1.25/Shared/Cocoa/
H A DWKNSURLProtectionSpace.h35 inline NSURLProtectionSpace *wrapper(WebProtectionSpace& protectionSpace) argument
37 ASSERT([protectionSpace.wrapper() isKindOfClass:[NSURLProtectionSpace self]]);
38 return (NSURLProtectionSpace *)protectionSpace.wrapper();
H A DWKNSURLProtectionSpace.mm40 return [reinterpret_cast<WebProtectionSpace*>(&self._apiObject)->protectionSpace().nsSpace() copy];
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Authentication/
H A DWebProtectionSpace.h37 static PassRefPtr<WebProtectionSpace> create(const WebCore::ProtectionSpace& protectionSpace) argument
39 return adoptRef(new WebProtectionSpace(protectionSpace));
51 const WebCore::ProtectionSpace& protectionSpace() const { return m_coreProtectionSpace; } function in class:WebKit::WebProtectionSpace
H A DAuthenticationChallengeProxy.cpp118 WebProtectionSpace* AuthenticationChallengeProxy::protectionSpace() const function in class:WebKit::AuthenticationChallengeProxy
121 m_webProtectionSpace = WebProtectionSpace::create(m_coreAuthenticationChallenge.protectionSpace());
H A DAuthenticationChallengeProxy.h60 WebProtectionSpace* protectionSpace() const;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBrowsingContextLoadDelegatePrivate.h31 - (BOOL)browsingContextController:(WKBrowsingContextController *)sender canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;
H A DWKNavigationDelegatePrivate.h55 - (BOOL)_webView:(WKWebView *)webView canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_auth_request.cpp71 WKRetainPtr<WKProtectionSpaceRef> protectionSpace = WKAuthenticationChallengeGetProtectionSpace(m_authenticationChallenge.get()); local
72 ASSERT(protectionSpace);
74 WKRetainPtr<WKStringRef> realm(AdoptWK, WKProtectionSpaceCopyRealm(protectionSpace.get()));
87 WKRetainPtr<WKProtectionSpaceRef> protectionSpace = WKAuthenticationChallengeGetProtectionSpace(m_authenticationChallenge.get()); local
88 ASSERT(protectionSpace);
90 WKRetainPtr<WKStringRef> host(AdoptWK, WKProtectionSpaceCopyHost(protectionSpace.get()));
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKAuthenticationChallenge.cpp49 return toAPI(toImpl(challenge)->protectionSpace());
/macosx-10.10.1/KerberosHelper-151/CFNetwork/
H A DNSURLConnection.m50 - (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;
89 - (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
91 NSLog(@"canAuthenticateAgainstProtectionSpace: %@", [protectionSpace authenticationMethod]);
92 if ([[protectionSpace authenticationMethod] isEqualToString:NSURLAuthenticationMethodNegotiate])
126 NSURLProtectionSpace *protectionSpace = [challenge protectionSpace];
128 NSLog(@"didReceiveAuthenticationChallenge: %@ %@", [protectionSpace authenticationMethod], [protectionSpace host]);
149 _nah = NAHCreate(NULL, (CFStringRef)[protectionSpace host], CFSTR("HTTP"), info);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitAuthenticationRequest.cpp210 request->priv->host = request->priv->authenticationChallenge->protectionSpace()->host().utf8();
228 return request->priv->authenticationChallenge->protectionSpace()->port();
246 request->priv->realm = request->priv->authenticationChallenge->protectionSpace()->realm().utf8();
264 return toWebKitAuthenticationScheme(request->priv->authenticationChallenge->protectionSpace()->authenticationScheme());
281 return request->priv->authenticationChallenge->protectionSpace()->isProxy();
/macosx-10.10.1/WebKit2-7600.1.25/NetworkProcess/
H A DAsynchronousNetworkLoaderClient.cpp54 void AsynchronousNetworkLoaderClient::canAuthenticateAgainstProtectionSpace(NetworkResourceLoader* loader, const ProtectionSpace& protectionSpace) argument
56 loader->sendAbortingOnFailure(Messages::WebResourceLoader::CanAuthenticateAgainstProtectionSpace(protectionSpace));
H A DNetworkResourceLoader.cpp396 void NetworkResourceLoader::canAuthenticateAgainstProtectionSpaceAsync(ResourceHandle* handle, const ProtectionSpace& protectionSpace) argument
401 m_networkLoaderClient->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebURLProtectionSpace.cpp37 WebURLProtectionSpace::WebURLProtectionSpace(const ProtectionSpace& protectionSpace) argument
39 , m_protectionSpace(protectionSpace)
58 WebURLProtectionSpace* WebURLProtectionSpace::createInstance(const ProtectionSpace& protectionSpace) argument
60 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace);
280 const ProtectionSpace& WebURLProtectionSpace::protectionSpace() const function in class:WebURLProtectionSpace
H A DWebURLAuthenticationChallenge.cpp150 m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->credential(),
209 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::protectionSpace( function in class:WebURLAuthenticationChallenge
212 *result = WebURLProtectionSpace::createInstance(m_authenticationChallenge.protectionSpace());
H A DWebURLAuthenticationChallenge.h71 virtual HRESULT STDMETHODCALLTYPE protectionSpace(
H A DWebURLProtectionSpace.h86 const WebCore::ProtectionSpace& protectionSpace() const;
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dgkoverride.m90 - (BOOL)connection:(NSURLConnection *)conn canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
91 SecTrustRef trust = [protectionSpace serverTrust];
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dgkoverride.m90 - (BOOL)connection:(NSURLConnection *)conn canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
91 SecTrustRef trust = [protectionSpace serverTrust];
/macosx-10.10.1/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultResourceLoadDelegate.m60 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebResourceLoadDelegatePrivate.h43 @param protectionSpace an NSURLProtectionSpace that will be used to generate an authentication challenge
44 @result Return YES if the resource load delegate is prepared to respond to an authentication challenge generated with protectionSpace, NO otherwise
46 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource WEBKIT_AVAILABLE_MAC(10_6);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Network/
H A DWebResourceLoader.cpp219 void WebResourceLoader::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace) argument
223 bool result = m_coreLoader->canAuthenticateAgainstProtectionSpace(protectionSpace);
/macosx-10.10.1/WebKit-7600.1.25/mac/Panels/
H A DWebPanelAuthenticationHandler.m92 NSURLCredential *latestCredential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:[challenge protectionSpace]];
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIWebURLAuthenticationChallenge.idl84 - (NSURLProtectionSpace *)protectionSpace
86 HRESULT protectionSpace([out, retval] IWebURLProtectionSpace** result);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp877 static bool initializeProtectionSpace(const char* protocol, const char* host, int port, const char* scheme, const char* realm, ProtectionSpace& protectionSpace) argument
897 protectionSpace = ProtectionSpace(host, port, serverType, realm, authenticationScheme);
907 ProtectionSpace protectionSpace;
908 if (!initializeProtectionSpace(protocol, host, port, scheme, realm, protectionSpace))
914 if (!plugin->getAuthenticationInfo(protectionSpace, usernameString, passwordString))

Completed in 337 milliseconds

12