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

  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationChallenge.h 34 typedef struct _CFURLAuthChallenge* CFURLAuthChallengeRef;
51 AuthenticationChallenge(CFURLAuthChallengeRef, AuthenticationClient*);
56 CFURLAuthChallengeRef cfURLAuthChallengeRef() const { return m_cfChallenge.get(); }
73 RetainPtr<CFURLAuthChallengeRef> m_cfChallenge;
AuthenticationCF.cpp 59 AuthenticationChallenge::AuthenticationChallenge(CFURLAuthChallengeRef cfChallenge,
76 if (a.cfURLAuthChallengeRef() != b.cfURLAuthChallengeRef())
82 CFURLAuthChallengeRef createCF(const AuthenticationChallenge& coreChallenge)
87 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential,
ResourceHandleCFNet.cpp 277 void didReceiveChallenge(CFURLConnectionRef conn, CFURLAuthChallengeRef challenge, const void* clientInfo)
510 // Since CFURLConnection networking relies on keeping a reference to the original CFURLAuthChallengeRef,
512 ASSERT(challenge.cfURLAuthChallengeRef());
526 CFURLConnectionUseCredential(d->m_connection.get(), credential.get(), challenge.cfURLAuthChallengeRef());
550 CFURLConnectionUseCredential(d->m_connection.get(), cfCredential.get(), challenge.cfURLAuthChallengeRef());
566 ASSERT(challenge.cfURLAuthChallengeRef());
587 CFURLConnectionUseCredential(d->m_connection.get(), cfCredential.get(), challenge.cfURLAuthChallengeRef());
590 CFURLConnectionUseCredential(d->m_connection.get(), cfCredential.get(), challenge.cfURLAuthChallengeRef());
600 ASSERT(challenge.cfURLAuthChallengeRef());
604 CFURLConnectionUseCredential(d->m_connection.get(), 0, challenge.cfURLAuthChallengeRef());
    [all...]
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallenge.cpp 172 m_authenticationChallenge = AuthenticationChallenge(webChallenge->authenticationChallenge().cfURLAuthChallengeRef(), webSender->authenticationClient());
WebDownloadCFNet.cpp 63 static void didReceiveAuthenticationChallengeCallback(CFURLDownloadRef download, CFURLAuthChallengeRef challenge, const void *clientInfo);
327 CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
346 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
381 void WebDownload::didReceiveAuthenticationChallenge(CFURLAuthChallengeRef challenge)
522 void didReceiveAuthenticationChallengeCallback(CFURLDownloadRef, CFURLAuthChallengeRef challenge, const void *clientInfo)

Completed in 92 milliseconds