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

  /external/webkit/WebCore/platform/network/mac/
AuthenticationChallenge.h 33 class NSURLAuthenticationChallenge;
35 @class NSURLAuthenticationChallenge;
46 AuthenticationChallenge(NSURLAuthenticationChallenge *);
49 NSURLAuthenticationChallenge *nsURLAuthenticationChallenge() const { return m_nsChallenge.get(); }
58 RetainPtr<NSURLAuthenticationChallenge *> m_nsChallenge;
AuthenticationMac.mm 33 #import <Foundation/NSURLAuthenticationChallenge.h>
63 - (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
69 - (void)continueWithoutCredentialForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
75 - (void)cancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
98 AuthenticationChallenge::AuthenticationChallenge(NSURLAuthenticationChallenge *challenge)
113 m_nsChallenge.adoptNS([[NSURLAuthenticationChallenge alloc] initWithAuthenticationChallenge:m_nsChallenge.get() sender:m_sender.get()]);
125 if (a.nsURLAuthenticationChallenge() != b.nsURLAuthenticationChallenge())
131 NSURLAuthenticationChallenge *mac(const AuthenticationChallenge& coreChallenge)
133 if (coreChallenge.nsURLAuthenticationChallenge())
    [all...]
ResourceHandleMac.mm 485 // Since NSURLConnection networking relies on keeping a reference to the original NSURLAuthenticationChallenge,
487 ASSERT(challenge.nsURLAuthenticationChallenge());
493 d->m_currentMacChallenge = challenge.nsURLAuthenticationChallenge();
514 d->m_currentMacChallenge = challenge.nsURLAuthenticationChallenge();
525 ASSERT(d->m_currentMacChallenge == challenge.nsURLAuthenticationChallenge());
675 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
687 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
    [all...]

Completed in 336 milliseconds