Searched refs:Credential (Results 1 - 25 of 60) sorted by relevance

123

/external/webkit/Source/WebCore/platform/network/qt/
H A DCredentialStorageQt.cpp29 #include "Credential.h"
33 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace&)
35 return Credential();
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
H A DSocketStreamHandle.h48 class Credential;
67 void receivedCredential(const AuthenticationChallenge&, const Credential&);
/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.h31 class Credential;
38 static void set(const Credential&, const ProtectionSpace&, const KURL&);
39 static Credential get(const ProtectionSpace&);
43 static Credential getFromPersistentStorage(const ProtectionSpace&);
47 static bool set(const Credential&, const KURL&); // Returns true if the URL corresponds to a known protection space, so credentials could be updated.
48 static Credential get(const KURL&);
H A DCredential.cpp26 #include "Credential.h"
32 Credential::Credential() function in class:WebCore::Credential
44 Credential::Credential(const String& user, const String& password, CredentialPersistence persistence) function in class:WebCore::Credential
54 Credential::Credential(const Credential& original, CredentialPersistence persistence) function in class:WebCore::Credential
66 bool Credential::isEmpty() const
76 const String& Credential
97 Credential::Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence persistence) function in class:WebCore::Credential
[all...]
H A DCredential.h52 class Credential { class in namespace:WebCore
55 Credential();
56 Credential(const String& user, const String& password, CredentialPersistence);
57 Credential(const Credential& original, CredentialPersistence);
59 Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence);
86 bool operator==(const Credential& a, const Credential& b);
87 inline bool operator!=(const Credential& a, const Credential
[all...]
H A DAuthenticationClient.h32 class Credential;
36 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&) = 0;
H A DAuthenticationChallengeBase.h28 #include "Credential.h"
40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
43 const Credential& proposedCredential() const;
59 Credential m_proposedCredential;
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DWebCredential.cpp31 WebCredential::WebCredential(const WebCore::Credential& credential)
36 const WebCore::Credential& WebCredential::core()
H A DWebCredential.h32 #include <WebCore/Credential.h>
42 static PassRefPtr<WebCredential> create(const WebCore::Credential& credential)
49 return adoptRef(new WebCredential(WebCore::Credential(username->string(), password->string(), persistence)));
52 const WebCore::Credential& core();
57 WebCredential(const WebCore::Credential&);
61 WebCore::Credential m_coreCredential;
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.h39 class Credential;
43 CFURLCredentialRef createCF(const Credential&);
46 Credential core(CFURLCredentialRef);
H A DCredentialStorageCFNet.cpp32 #include "Credential.h"
39 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
/external/webkit/Source/WebCore/platform/network/mac/
H A DAuthenticationMac.h39 class Credential;
44 NSURLCredential *mac(const Credential&);
48 Credential core(NSURLCredential *);
H A DCredentialStorageMac.mm30 #include "Credential.h"
34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
37 return credential ? core(credential) : Credential();
/external/webkit/Source/WebKit/win/
H A DWebURLCredential.h30 #include <WebCore/Credential.h>
36 static WebURLCredential* createInstance(const WebCore::Credential&);
38 WebURLCredential(const WebCore::Credential&);
65 const WebCore::Credential& credential() const;
70 WebCore::Credential m_credential;
H A DWebURLCredential.cpp37 WebURLCredential::WebURLCredential(const Credential& credential)
53 WebURLCredential* instance = new WebURLCredential(Credential());
58 WebURLCredential* WebURLCredential::createInstance(const Credential& credential)
125 m_credential = Credential(String(user, SysStringLen(user)), String(password, SysStringLen(password)), corePersistence);
165 const WebCore::Credential& WebURLCredential::credential() const
/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)
H A DSocketStreamHandle.h43 class Credential;
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
/external/webkit/Source/WebCore/platform/network/brew/
H A DSocketStreamHandle.h43 class Credential;
62 void receivedCredential(const AuthenticationChallenge&, const Credential&);
/external/webkit/Source/WebCore/platform/network/chromium/
H A DSocketStreamHandle.h43 class Credential;
62 void receivedCredential(const AuthenticationChallenge&, const Credential&);
H A DAuthenticationChallenge.h39 AuthenticationChallenge(const ProtectionSpace&, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse&, const ResourceError&);
/external/webkit/Source/WebCore/platform/network/curl/
H A DSocketStreamHandle.h43 class Credential;
61 void receivedCredential(const AuthenticationChallenge&, const Credential&);
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.h39 class Credential;
58 void useCredentialForChallenge(uint64_t challengeID, const WebCore::Credential&);
/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)

Completed in 730 milliseconds

123