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

/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DAuthenticationChallenge.h33 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
34 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
46 return !proposedCredential().isEmpty();
H A DNetworkJob.cpp364 updateCurrentWebChallenge(AuthenticationChallenge(newSpace, challenge.proposedCredential(), challenge.previousFailureCount(), challenge.failureResponse(), challenge.error()));
946 if (challenge.proposedCredential().user().isEmpty() || challenge.proposedCredential().password().isEmpty())
949 CredentialStorage::set(challenge.proposedCredential(), challenge.protectionSpace(), m_response.url());
960 proxyInfo.username = challenge.proposedCredential().user();
961 proxyInfo.password = challenge.proposedCredential().password();
965 m_frame->page()->chrome().client()->platformPageClient()->syncProxyCredential(challenge.proposedCredential());
987 const String& purgeUsername = challenge.proposedCredential().user();
988 const String& purgePassword = challenge.proposedCredential().password();
H A DNetworkManager.cpp125 Credential credential = challenge.proposedCredential();
/macosx-10.9.5/WebCore-7537.78.1/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)
/macosx-10.9.5/WebCore-7537.78.1/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)
/macosx-10.9.5/WebCore-7537.78.1/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)
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DAuthenticationChallengeBase.cpp37 const Credential& proposedCredential,
43 , m_proposedCredential(proposedCredential)
55 const Credential& AuthenticationChallengeBase::proposedCredential() const function in class:WebCore::AuthenticationChallengeBase
96 if (a.proposedCredential() != b.proposedCredential())
36 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;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DAuthenticationChallenge.h42 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
43 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKAuthenticationChallenge.cpp54 return toAPI(toImpl(challenge)->proposedCredential());
/macosx-10.9.5/WebKit-7537.78.2/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
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.cpp86 WebCredential* AuthenticationChallengeProxy::proposedCredential() const function in class:WebKit::AuthenticationChallengeProxy
89 m_webCredential = WebCredential::create(m_coreAuthenticationChallenge.proposedCredential());
H A DAuthenticationChallengeProxy.h57 WebCredential* proposedCredential() const;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DAuthenticationChallenge.h52 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
H A DAuthenticationCF.cpp47 const Credential& proposedCredential,
52 proposedCredential,
92 CFURLCredentialRef credential = createCF(coreChallenge.proposedCredential());
46 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
/macosx-10.9.5/WebKit-7537.78.2/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);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DAuthenticationMac.mm169 const Credential& proposedCredential,
174 proposedCredential,
183 core([challenge proposedCredential]),
229 proposedCredential:mac(coreChallenge.proposedCredential())
/macosx-10.9.5/WebKit-7537.78.2/mac/Panels/
H A DWebAuthenticationPanel.m213 if ([[chall proposedCredential] user] != nil) {
214 [username setStringValue:[[chall proposedCredential] user]];
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DWebKitAuthenticationWidget.cpp185 const Credential& credentialFromPersistentStorage = priv->challenge.proposedCredential();
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebCoreArgumentCoders.cpp202 encoder << challenge.protectionSpace() << challenge.proposedCredential() << challenge.previousFailureCount() << challenge.failureResponse() << challenge.error();
211 Credential proposedCredential;
212 if (!decoder.decode(proposedCredential))
227 challenge = AuthenticationChallenge(protectionSpace, proposedCredential, previousFailureCount, failureResponse, error);

Completed in 162 milliseconds