Searched refs:failureResponse (Results 1 - 12 of 12) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DAuthenticationChallengeBase.cpp65 const ResourceResponse& AuthenticationChallengeBase::failureResponse() const function in class:WebCore::AuthenticationChallengeBase
102 if (a.failureResponse() != b.failureResponse())
H A DAuthenticationChallengeBase.h45 const ResourceResponse& failureResponse() const;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebURLAuthenticationChallenge.h51 /* [in] */ IWebURLResponse* failureResponse,
62 virtual HRESULT STDMETHODCALLTYPE failureResponse(
H A DWebURLAuthenticationChallenge.cpp114 /* [in] */ IWebURLResponse* failureResponse,
120 if (!space || !proposedCredential || !failureResponse || !sender)
134 hr = failureResponse->QueryInterface(&webResponse);
188 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::failureResponse( function in class:WebURLAuthenticationChallenge
191 *result = WebURLResponse::createInstance(m_authenticationChallenge.failureResponse());
110 initWithProtectionSpace( IWebURLProtectionSpace* space, IWebURLCredential* proposedCredential, int previousFailureCount, IWebURLResponse* failureResponse, IWebError* error, IWebURLAuthenticationChallengeSender* sender) argument
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebURLAuthenticationChallenge.idl59 - (NSURLResponse *)failureResponse
61 HRESULT failureResponse([out, retval] IWebURLResponse** result);
69 - (id)initWithProtectionSpace:(NSURLProtectionSpace *)space proposedCredential:(NSURLCredential *)credential previousFailureCount:(int)count failureResponse:(NSURLResponse *)response error:(NSError *)error sender:(id <NSURLAuthenticationChallengeSender>)sender
71 HRESULT initWithProtectionSpace([in] IWebURLProtectionSpace* space, [in] IWebURLCredential* proposedCredential, [in] int previousFailureCount, [in] IWebURLResponse* failureResponse, [in] IWebError* error, [in] IWebURLAuthenticationChallengeSender* sender);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DResourceHandleMac.mm485 if (challenge.failureResponse().httpStatusCode() == 401) {
487 CredentialStorage::set(credential, challenge.protectionSpace(), challenge.failureResponse().url());
558 if (challenge.failureResponse().httpStatusCode() == 401)
559 urlToStore = challenge.failureResponse().url();
H A DAuthenticationMac.mm185 [challenge failureResponse],
231 failureResponse:coreChallenge.failureResponse().nsURLResponse()
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DResourceHandleCFNet.cpp545 if (challenge.failureResponse().httpStatusCode() == 401)
546 urlToStore = challenge.failureResponse().url();
568 if (challenge.failureResponse().httpStatusCode() == 401) {
570 CredentialStorage::set(credential, challenge.protectionSpace(), challenge.failureResponse().url());
616 if (challenge.failureResponse().httpStatusCode() == 401)
617 urlToStore = challenge.failureResponse().url();
H A DAuthenticationCF.cpp96 coreChallenge.failureResponse().cfURLResponse(),
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebCoreArgumentCoders.cpp202 encoder << challenge.protectionSpace() << challenge.proposedCredential() << challenge.previousFailureCount() << challenge.failureResponse() << challenge.error();
219 ResourceResponse failureResponse;
220 if (!decoder.decode(failureResponse))
227 challenge = AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DResourceHandleSoup.cpp1154 if (isAuthenticationFailureStatusCode(challenge.failureResponse().httpStatusCode()))
1155 CredentialStorage::set(credential, challenge.protectionSpace(), challenge.failureResponse().url());
1208 CredentialStorage::set(credential, challenge.protectionSpace(), challenge.failureResponse().url());
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DNetworkJob.cpp364 updateCurrentWebChallenge(AuthenticationChallenge(newSpace, challenge.proposedCredential(), challenge.previousFailureCount(), challenge.failureResponse(), challenge.error()));

Completed in 226 milliseconds