Searched refs:proposedCredential (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/platform/network/qt/
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/Source/WebCore/platform/network/win/
H A DAuthenticationChallenge.h38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
39 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/Source/WebCore/platform/network/curl/
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/Source/WebCore/platform/network/soup/
H A DAuthenticationChallenge.h39 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
40 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/external/webkit/Source/WebCore/platform/network/
H A DAuthenticationChallengeBase.cpp39 const Credential& proposedCredential,
45 , m_proposedCredential(proposedCredential)
57 const Credential& AuthenticationChallengeBase::proposedCredential() const function in class:WebCore::AuthenticationChallengeBase
98 if (a.proposedCredential() != b.proposedCredential())
38 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
H A DAuthenticationChallengeBase.h40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
43 const Credential& proposedCredential() const;
/external/webkit/Source/WebCore/platform/network/chromium/
H A DAuthenticationChallenge.h39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKAuthenticationChallenge.cpp53 return toAPI(toImpl(challenge)->proposedCredential());
/external/webkit/Source/WebKit/win/
H A DWebURLAuthenticationChallenge.h49 /* [in] */ IWebURLCredential* proposedCredential,
68 virtual HRESULT STDMETHODCALLTYPE proposedCredential(
H A DWebURLAuthenticationChallenge.cpp112 /* [in] */ IWebURLCredential* proposedCredential,
120 if (!space || !proposedCredential || !failureResponse || !sender)
129 COMPtr<WebURLCredential> webCredential(Query, proposedCredential);
202 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::proposedCredential( function in class:WebURLAuthenticationChallenge
205 *result = WebURLCredential::createInstance(m_authenticationChallenge.proposedCredential());
110 initWithProtectionSpace( IWebURLProtectionSpace* space, IWebURLCredential* proposedCredential, int previousFailureCount, IWebURLResponse* failureResponse, IWebError* error, IWebURLAuthenticationChallengeSender* sender) argument
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.cpp82 WebCredential* AuthenticationChallengeProxy::proposedCredential() const function in class:WebKit::AuthenticationChallengeProxy
85 m_webCredential = WebCredential::create(m_coreAuthenticationChallenge.proposedCredential());
H A DAuthenticationChallengeProxy.h61 WebCredential* proposedCredential() const;
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.cpp47 const Credential& proposedCredential,
52 proposedCredential,
85 CFURLCredentialRef credential = createCF(coreChallenge.proposedCredential());
46 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
H A DAuthenticationChallenge.h49 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
/external/webkit/Source/WebCore/platform/network/mac/
H A DAuthenticationMac.mm100 const Credential& proposedCredential,
105 proposedCredential,
114 core([challenge proposedCredential]),
159 proposedCredential:mac(coreChallenge.proposedCredential())
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebURLAuthenticationChallenge.idl69 - (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);
79 -(NSURLCredential *)proposedCredential
81 HRESULT proposedCredential([out, retval] IWebURLCredential** result);
/external/webkit/Source/WebKit/mac/Panels/
H A DWebAuthenticationPanel.m210 if ([[chall proposedCredential] user] != nil) {
211 [username setStringValue:[[chall proposedCredential] user]];
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h125 encoder->encode(CoreIPC::In(challenge.protectionSpace(), challenge.proposedCredential(), challenge.previousFailureCount(), challenge.failureResponse(), challenge.error()));
131 WebCore::Credential proposedCredential; local
136 if (!decoder->decode(CoreIPC::Out(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error)))
139 challenge = WebCore::AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error);

Completed in 681 milliseconds