HomeSort by relevance Sort by last modified time
    Searched refs:nsURLAuthenticationChallenge (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationChallenge.h 38 class NSURLAuthenticationChallenge;
40 @class NSURLAuthenticationChallenge;
58 AuthenticationChallenge(NSURLAuthenticationChallenge *);
61 NSURLAuthenticationChallenge *nsURLAuthenticationChallenge() const { return m_nsChallenge.get(); }
76 RetainPtr<NSURLAuthenticationChallenge *> m_nsChallenge;
  /external/webkit/Source/WebCore/platform/network/mac/
AuthenticationMac.mm 35 #import <Foundation/NSURLAuthenticationChallenge.h>
71 - (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
77 - (void)continueWithoutCredentialForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
83 - (void)cancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
112 AuthenticationChallenge::AuthenticationChallenge(NSURLAuthenticationChallenge *challenge)
127 m_nsChallenge.adoptNS([[NSURLAuthenticationChallenge alloc] initWithAuthenticationChallenge:m_nsChallenge.get() sender:m_sender.get()]);
147 if (a.nsURLAuthenticationChallenge() != b.nsURLAuthenticationChallenge())
153 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge& coreChallenge)
155 if (coreChallenge.nsURLAuthenticationChallenge())
    [all...]
ResourceHandleMac.mm 606 // Since NSURLConnection networking relies on keeping a reference to the original NSURLAuthenticationChallenge,
608 ASSERT(challenge.nsURLAuthenticationChallenge());
614 d->m_currentMacChallenge = challenge.nsURLAuthenticationChallenge();
648 d->m_currentMacChallenge = challenge.nsURLAuthenticationChallenge();
659 ASSERT(d->m_currentMacChallenge == challenge.nsURLAuthenticationChallenge());
839 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
851 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 183 [authenticationChallenge.sender() useCredential:mac(credential) forAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
188 [authenticationChallenge.sender() continueWithoutCredentialForAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
193 [authenticationChallenge.sender() cancelAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
233 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
239 - (void)download:(NSURLDownload *)download didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge

Completed in 494 milliseconds