Searched refs:credential (Results 1 - 25 of 40) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/mac/
H A DCredentialStorageMac.mm36 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
37 return credential ? core(credential) : Credential();
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DWebCredential.cpp31 WebCredential::WebCredential(const WebCore::Credential& credential) argument
32 : m_coreCredential(credential)
H A DAuthenticationDecisionListener.cpp42 void AuthenticationDecisionListener::useCredential(WebCredential* credential) argument
45 m_challengeProxy->useCredential(credential);
H A DWebCredential.h42 static PassRefPtr<WebCredential> create(const WebCore::Credential& credential) argument
44 return adoptRef(new WebCredential(credential));
H A DAuthenticationChallengeProxy.cpp59 void AuthenticationChallengeProxy::useCredential(WebCredential* credential) argument
64 if (!credential)
67 m_process->send(Messages::AuthenticationManager::UseCredentialForChallenge(m_challengeID, credential->core()), 0);
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dsaslplainmechanism.h49 talk_base::FormatCryptString credential; local
50 credential.Append("\0", 1);
51 credential.Append(user_jid_.node());
52 credential.Append("\0", 1);
53 credential.Append(&password_);
54 el->AddText(Base64EncodeFromArray(credential.GetData(), credential.GetLength()));
H A Dsaslcookiemechanism.h70 std::string credential; local
71 credential.append("\0", 1);
72 credential.append(username_);
73 credential.append("\0", 1);
74 credential.append(cookie_);
75 el->AddText(Base64Encode(credential));
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKAuthenticationDecisionListener.cpp39 void WKAuthenticationDecisionListenerUseCredential(WKAuthenticationDecisionListenerRef authenticationListener, WKCredentialRef credential) argument
41 toImpl(authenticationListener)->useCredential(toImpl(credential));
H A DWKAuthenticationDecisionListener.h37 WK_EXPORT void WKAuthenticationDecisionListenerUseCredential(WKAuthenticationDecisionListenerRef authenticationListener, WKCredentialRef credential);
H A DWKCredential.cpp42 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence)); local
43 return toAPI(credential.release().releaseRef());
/external/webkit/Source/WebKit/win/
H A DWebURLAuthenticationChallengeSenderCFNet.cpp64 /* [in] */ IWebURLCredential* credential,
72 if (!credential || FAILED(credential->QueryInterface(__uuidof(WebURLCredential), (void**)&webCredential)))
75 m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential());
63 useCredential( IWebURLCredential* credential, IWebURLAuthenticationChallenge* challenge) argument
H A DWebURLAuthenticationChallengeSenderCurl.cpp57 /* [in] */ IWebURLCredential* credential,
56 useCredential( IWebURLCredential* credential, IWebURLAuthenticationChallenge* challenge) argument
H A DWebURLCredential.cpp37 WebURLCredential::WebURLCredential(const Credential& credential) argument
39 , m_credential(credential)
58 WebURLCredential* WebURLCredential::createInstance(const Credential& credential) argument
60 WebURLCredential* instance = new WebURLCredential(credential);
165 const WebCore::Credential& WebURLCredential::credential() const function in class:WebURLCredential
H A DWebURLAuthenticationChallengeSender.h60 /* [in] */ IWebURLCredential* credential,
H A DWebURLCredential.h65 const WebCore::Credential& credential() const;
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.cpp84 void AuthenticationManager::useCredentialForChallenge(uint64_t challengeID, const Credential& credential) argument
91 Download::receivedCredential(challenge, credential);
96 coreClient->receivedCredential(challenge, credential);
/external/webkit/Source/WebKit/mac/Panels/
H A DWebAuthenticationPanel.m226 NSURLCredential *credential = nil;
229 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
232 [callback performSelector:selector withObject:chall withObject:credential];
233 [credential release];
251 NSURLCredential *credential = nil;
258 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
265 [callback performSelector:selector withObject:chall withObject:credential];
266 [credential release];
H A DWebPanelAuthenticationHandler.m145 -(void)_authenticationDoneWithChallenge:(NSURLAuthenticationChallenge *)challenge result:(NSURLCredential *)credential
154 if (credential == nil) {
157 [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];
/external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
H A DDownloadCurl.cpp61 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument
/external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
H A DDownloadQt.cpp65 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument
/external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
H A DDownloadSoup.cpp66 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument
/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.cpp86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url) argument
91 protectionSpaceToCredentialMap().set(protectionSpace, credential);
142 bool CredentialStorage::set(const Credential& credential, const KURL& url) argument
150 protectionSpaceToCredentialMap().set(iter->second, credential);
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.cpp85 CFURLCredentialRef credential = createCF(coreChallenge.proposedCredential()); local
87 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential,
92 CFRelease(credential);
H A DResourceHandleCFNet.cpp410 // try and reuse the credential preemptively, as allowed by RFC 2617.
414 // try and reuse the credential preemptively, as allowed by RFC 2617.
518 RetainPtr<CFURLCredentialRef> credential(AdoptCF,
524 CredentialStorage::set(core(credential.get()), challenge.protectionSpace(), urlToStore);
526 CFURLConnectionUseCredential(d->m_connection.get(), credential.get(), challenge.cfURLAuthChallengeRef());
535 // The stored credential wasn't accepted, stop using it.
536 // There is a race condition here, since a different credential might have already been stored by another ResourceHandle,
542 Credential credential = CredentialStorage::get(challenge.protectionSpace()); local
543 if (!credential.isEmpty() && credential !
562 receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential) argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebDownload.mm115 // Try previously stored credential first.
117 NSURLCredential *credential = mac(CredentialStorage::get(core([challenge protectionSpace])));
118 if (credential) {
119 [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];

Completed in 1492 milliseconds

12