Searched refs:webChallenge (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/WebKit/win/ |
D | WebURLAuthenticationChallengeSenderCFNet.cpp | 44 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge); in cancelAuthenticationChallenge() local 45 if (!webChallenge) in cancelAuthenticationChallenge() 48 m_client->receivedCancellation(webChallenge->authenticationChallenge()); in cancelAuthenticationChallenge() 55 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge); in continueWithoutCredentialForAuthenticationChallenge() local 56 if (!webChallenge) in continueWithoutCredentialForAuthenticationChallenge() 59 m_client->receivedRequestToContinueWithoutCredential(webChallenge->authenticationChallenge()); in continueWithoutCredentialForAuthenticationChallenge() 67 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge); in useCredential() local 68 if (!webChallenge) in useCredential() 75 …m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential()); in useCredential()
|
D | WebDownloadCFNet.cpp | 322 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge); in continueWithoutCredentialForAuthenticationChallenge() local 323 if (!webChallenge) in continueWithoutCredentialForAuthenticationChallenge() 327 …CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthC… in continueWithoutCredentialForAuthenticationChallenge() 335 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge); in useCredential() local 336 if (!webChallenge) in useCredential() 346 …CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChall… in useCredential() 393 COMPtr<IWebURLAuthenticationChallenge> webChallenge(AdoptCOM, in didReceiveAuthenticationChallenge() local 396 if (SUCCEEDED(m_delegate->didReceiveAuthenticationChallenge(this, webChallenge.get()))) in didReceiveAuthenticationChallenge() 399 cancelAuthenticationChallenge(webChallenge.get()); in didReceiveAuthenticationChallenge()
|
D | WebURLAuthenticationChallenge.cpp | 163 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge); in initWithAuthenticationChallenge() local 164 if (!webChallenge) in initWithAuthenticationChallenge() 172 …m_authenticationChallenge = AuthenticationChallenge(webChallenge->authenticationChallenge().cfURLA… in initWithAuthenticationChallenge()
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebFrameLoaderClient.cpp | 151 …COMPtr<WebURLAuthenticationChallenge> webChallenge(AdoptCOM, WebURLAuthenticationChallenge::create… in dispatchDidReceiveAuthenticationChallenge() local 152 …eLoadDelegate->didReceiveAuthenticationChallenge(webView, identifier, webChallenge.get(), getWebDa… in dispatchDidReceiveAuthenticationChallenge() 171 …COMPtr<WebURLAuthenticationChallenge> webChallenge(AdoptCOM, WebURLAuthenticationChallenge::create… in dispatchDidCancelAuthenticationChallenge() local 172 …resourceLoadDelegate->didCancelAuthenticationChallenge(webView, identifier, webChallenge.get(), ge… in dispatchDidCancelAuthenticationChallenge()
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebFrameLoaderClient.mm | 409 NSURLAuthenticationChallenge *webChallenge = mac(challenge); 413 …esource:didReceiveAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loa… 419 [[WebPanelAuthenticationHandler sharedHandler] startAuthentication:webChallenge window:window]; 459 NSURLAuthenticationChallenge *webChallenge = mac(challenge); 463 …resource:didCancelAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loa… 468 …ticationHandler *)[WebPanelAuthenticationHandler sharedHandler] cancelAuthentication:webChallenge];
|