Searched refs:NSURLAuthenticationChallenge (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DAuthenticationMac.h30 @class NSURLAuthenticationChallenge;
38 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge&);
41 AuthenticationChallenge core(NSURLAuthenticationChallenge *);
H A DAuthenticationMac.mm32 #import <Foundation/NSURLAuthenticationChallenge.h>
38 @interface NSURLAuthenticationChallenge (Details)
40 +(NSURLAuthenticationChallenge *)_createAuthenticationChallengeForCFAuthChallenge:(CFURLAuthChallengeRef)cfChallenge sender:(id <NSURLAuthenticationChallengeSender>)sender;
42 +(NSURLAuthenticationChallenge *)_authenticationChallengeForCFAuthChallenge:(CFURLAuthChallengeRef)cfChallenge sender:(id <NSURLAuthenticationChallengeSender>)sender;
88 - (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
94 - (void)continueWithoutCredentialForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
100 - (void)cancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
124 AuthenticationChallenge core(NSURLAuthenticationChallenge *macChallenge)
135 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge& coreChallenge)
144 return [[NSURLAuthenticationChallenge _createAuthenticationChallengeForCFAuthChalleng
[all...]
H A DWebCoreResourceHandleAsDelegate.mm106 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
119 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
H A DWebCoreResourceHandleAsOperationQueueDelegate.mm137 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
153 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
H A DResourceHandleMac.mm534 // Since NSURLConnection networking relies on keeping a reference to the original NSURLAuthenticationChallenge,
588 NSURLAuthenticationChallenge *macChallenge = mac(challenge);
/macosx-10.10/WebKit-7600.1.25/mac/Panels/
H A DWebPanelAuthenticationHandler.h32 @class NSURLAuthenticationChallenge;
42 - (void)startAuthentication:(NSURLAuthenticationChallenge *)challenge window:(NSWindow *)w;
43 - (void)cancelAuthentication:(NSURLAuthenticationChallenge *)challenge;
H A DWebAuthenticationPanel.h34 @class NSURLAuthenticationChallenge;
50 NSURLAuthenticationChallenge *challenge;
61 - (void)runAsModalDialogWithChallenge:(NSURLAuthenticationChallenge *)chall;
62 - (void)runAsSheetOnWindow:(NSWindow *)window withChallenge:(NSURLAuthenticationChallenge *)chall;
H A DWebPanelAuthenticationHandler.m33 #import <Foundation/NSURLAuthenticationChallenge.h>
70 -(void)enqueueChallenge:(NSURLAuthenticationChallenge *)challenge forWindow:(id)window
87 NSURLAuthenticationChallenge *challenge = [[queue objectAtIndex:0] retain];
105 -(void)startAuthentication:(NSURLAuthenticationChallenge *)challenge window:(NSWindow *)w
135 -(void)cancelAuthentication:(NSURLAuthenticationChallenge *)challenge
145 -(void)_authenticationDoneWithChallenge:(NSURLAuthenticationChallenge *)challenge result:(NSURLCredential *)credential
H A DWebAuthenticationPanel.m34 #import <Foundation/NSURLAuthenticationChallenge.h>
131 -(void)setUpForChallenge:(NSURLAuthenticationChallenge *)chall
233 - (void)runAsModalDialogWithChallenge:(NSURLAuthenticationChallenge *)chall
250 - (void)runAsSheetOnWindow:(NSWindow *)window withChallenge:(NSURLAuthenticationChallenge *)chall
272 NSURLAuthenticationChallenge *chall;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKNSURLAuthenticationChallenge.h35 inline NSURLAuthenticationChallenge *wrapper(AuthenticationChallengeProxy& challenge)
37 ASSERT([challenge.wrapper() isKindOfClass:[NSURLAuthenticationChallenge self]]);
38 return (NSURLAuthenticationChallenge *)challenge.wrapper();
H A DWKNSURLAuthenticationChallenge.mm54 return [[NSURLAuthenticationChallenge alloc] initWithAuthenticationChallenge:mac(challenge.core()) sender:sender];
66 static void checkChallenge(NSURLAuthenticationChallenge *challenge)
72 - (void)cancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
79 - (void)continueWithoutCredentialForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
86 - (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
93 - (void)performDefaultHandlingForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
100 - (void)rejectProtectionSpaceAndContinueWithChallenge:(NSURLAuthenticationChallenge *)challenge
H A DWKBrowsingContextLoadDelegatePrivate.h32 - (void)browsingContextController:(WKBrowsingContextController *)sender didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
H A DWKNavigationDelegate.h138 - (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler;
H A DWKNavigationDelegatePrivate.h56 - (void)_webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DAuthenticationChallenge.h43 OBJC_CLASS NSURLAuthenticationChallenge; variable
58 AuthenticationChallenge(NSURLAuthenticationChallenge *);
61 NSURLAuthenticationChallenge *nsURLAuthenticationChallenge() const { return m_nsChallenge.get(); }
77 RetainPtr<NSURLAuthenticationChallenge *> m_nsChallenge;
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebResourceLoadDelegate.h31 @class NSURLAuthenticationChallenge;
84 @param challenge The NSURLAuthenticationChallenge to start authentication for
88 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
93 @param challenge The NSURLAuthenticationChallenge for which to cancel authentication
95 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
H A DWebResourceLoadDelegatePrivate.h31 @class NSURLAuthenticationChallenge;
H A DWebViewPrivate.h717 - (void)handleAuthenticationForResource:(id)identifier challenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
/macosx-10.10/KerberosHelper-151/CFNetwork/
H A DNSURLConnection.m51 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
52 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
75 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
124 - (void)connection:(NSURLConnection*)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
/macosx-10.10/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultResourceLoadDelegate.m52 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
56 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DResourceHandleInternal.h58 OBJC_CLASS NSURLAuthenticationChallenge; variable
218 NSURLAuthenticationChallenge *m_currentMacChallenge;
/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DWebDownload.mm31 #import <Foundation/NSURLAuthenticationChallenge.h>
126 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
151 - (void)download:(NSURLDownload *)download didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
/macosx-10.10/WebKit2-7600.1.25/Shared/Downloads/mac/
H A DDownloadMac.mm188 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
196 - (void)download:(NSURLDownload *)download didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateAVFoundationObjC.h45 OBJC_CLASS NSURLAuthenticationChallenge; variable
85 bool shouldWaitForResponseToAuthenticationChallenge(NSURLAuthenticationChallenge*);
H A DMediaPlayerPrivateAVFoundationObjC.mm1563 bool MediaPlayerPrivateAVFoundationObjC::shouldWaitForResponseToAuthenticationChallenge(NSURLAuthenticationChallenge* nsChallenge)
2890 - (BOOL)resourceLoader:(AVAssetResourceLoader *)resourceLoader shouldWaitForResponseToAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
2900 RetainPtr<NSURLAuthenticationChallenge> strongChallenge = challenge;

Completed in 214 milliseconds

12