OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:failureResponse
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Source/WebCore/platform/network/
AuthenticationChallengeBase.cpp
67
const ResourceResponse& AuthenticationChallengeBase::
failureResponse
() const
104
if (a.
failureResponse
() != b.
failureResponse
())
AuthenticationChallengeBase.h
45
const ResourceResponse&
failureResponse
() const;
/external/webkit/Source/WebKit/win/
WebURLAuthenticationChallenge.h
51
/* [in] */ IWebURLResponse*
failureResponse
,
62
virtual HRESULT STDMETHODCALLTYPE
failureResponse
(
WebURLAuthenticationChallenge.cpp
114
/* [in] */ IWebURLResponse*
failureResponse
,
120
if (!space || !proposedCredential || !
failureResponse
|| !sender)
134
hr =
failureResponse
->QueryInterface(&webResponse);
188
HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::
failureResponse
(
191
*result = WebURLResponse::createInstance(m_authenticationChallenge.
failureResponse
());
/external/webkit/Source/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl
59
- (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);
/external/webkit/Source/WebCore/platform/network/mac/
AuthenticationMac.mm
116
[challenge
failureResponse
],
161
failureResponse
:coreChallenge.
failureResponse
().nsURLResponse()
ResourceHandleMac.mm
637
if (challenge.
failureResponse
().httpStatusCode() == 401) {
701
if (challenge.
failureResponse
().httpStatusCode() == 401)
[
all
...]
/external/webkit/Source/WebCore/platform/network/cf/
AuthenticationCF.cpp
89
coreChallenge.
failureResponse
().cfURLResponse(),
ResourceHandleCFNet.cpp
522
if (challenge.
failureResponse
().httpStatusCode() == 401)
545
if (challenge.
failureResponse
().httpStatusCode() == 401) {
583
if (challenge.
failureResponse
().httpStatusCode() == 401)
[
all
...]
/external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h
125
encoder->encode(CoreIPC::In(challenge.protectionSpace(), challenge.proposedCredential(), challenge.previousFailureCount(), challenge.
failureResponse
(), challenge.error()));
133
WebCore::ResourceResponse
failureResponse
;
136
if (!decoder->decode(CoreIPC::Out(protectionSpace, proposedCredential, previousFailureCount,
failureResponse
, error)))
139
challenge = WebCore::AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount,
failureResponse
, error);
/external/webkit/Source/WebCore/loader/
DocumentThreadableLoader.cpp
318
m_client->didReceiveAuthenticationCancellation(challenge.
failureResponse
());
/external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp
1032
void XMLHttpRequest::didReceiveAuthenticationCancellation(const ResourceResponse&
failureResponse
)
1034
m_response =
failureResponse
;
[
all
...]
Completed in 1036 milliseconds