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

/external/webkit/Source/WebCore/platform/network/
H A DCredential.cpp44 Credential::Credential(const String& user, const String& password, CredentialPersistence persistence) argument
47 , m_persistence(persistence)
54 Credential::Credential(const Credential& original, CredentialPersistence persistence) argument
57 , m_persistence(persistence)
91 CredentialPersistence Credential::persistence() const function in class:WebCore::Credential
97 Credential::Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence persistence) argument
100 , m_persistence(persistence)
125 // Check persistence first since all credential types
126 // have the persistence property.
127 if (a.persistence() !
[all...]
H A DCredential.h67 CredentialPersistence persistence() const;
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKCredential.cpp40 WKCredentialRef WKCredentialCreate(WKStringRef username, WKStringRef password, WKCredentialPersistence persistence) argument
42 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence));
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DMidpointDisplacementHeightMap.java49 private float persistence; // How the random offset evolves with increasing passes field in class:MidpointDisplacementHeightMap
59 * the <code>persistence</code> parameter each pass to smoothen close cell heights.
69 * @param persistence
77 public MidpointDisplacementHeightMap(int size, float range, float persistence, long seed) throws Exception { argument
84 this.persistence = persistence;
96 * the <code>persistence</code> parameter each pass to smoothen close cell heights.
102 * @param persistence
108 public MidpointDisplacementHeightMap(int size, float range, float persistence) throws Exception { argument
109 this(size, range, persistence, ne
254 setPersistence(float persistence) argument
[all...]
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.cpp98 CFURLCredentialPersistence persistence = kCFURLCredentialPersistenceNone; local
99 switch (coreCredential.persistence()) {
103 persistence = kCFURLCredentialPersistenceForSession;
106 persistence = kCFURLCredentialPersistencePermanent;
114 CFURLCredentialRef result = CFURLCredentialCreate(0, user, password, 0, persistence);
191 CredentialPersistence persistence = CredentialPersistenceNone;
196 persistence = CredentialPersistenceForSession;
199 persistence = CredentialPersistencePermanent;
205 return Credential(CFURLCredentialGetUsername(cfCredential), CFURLCredentialCopyPassword(cfCredential), persistence);
H A DResourceHandleCFNet.cpp544 ASSERT(credential.persistence() == CredentialPersistenceNone);
576 if (credential.persistence() == CredentialPersistenceForSession) {
/external/webkit/Source/WebKit/win/
H A DWebURLCredential.h53 /* [in] */ WebURLCredentialPersistence persistence);
58 virtual HRESULT STDMETHODCALLTYPE persistence(
H A DWebURLCredential.cpp108 /* [in] */ WebURLCredentialPersistence persistence)
111 switch (persistence) {
137 HRESULT STDMETHODCALLTYPE WebURLCredential::persistence( function in class:WebURLCredential
140 switch (m_credential.persistence()) {
105 initWithUser( BSTR user, BSTR password, WebURLCredentialPersistence persistence) argument
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DWebCredential.h47 static PassRefPtr<WebCredential> create(WebString* username, WebString* password, WebCore::CredentialPersistence persistence) argument
49 return adoptRef(new WebCredential(WebCore::Credential(username->string(), password->string(), persistence)));
/external/webkit/Source/WebCore/platform/network/mac/
H A DAuthenticationMac.mm246 NSURLCredentialPersistence persistence = NSURLCredentialPersistenceNone;
247 switch (coreCredential.persistence()) {
251 persistence = NSURLCredentialPersistenceForSession;
254 persistence = NSURLCredentialPersistencePermanent;
264 persistence:persistence]
271 persistence:persistence]
339 CredentialPersistence persistence = CredentialPersistenceNone;
340 switch ([macCredential persistence]) {
[all...]
H A DResourceHandleMac.mm613 persistence:NSURLCredentialPersistenceForSession];
636 ASSERT(credential.persistence() == CredentialPersistenceNone);
689 if (credential.persistence() == CredentialPersistenceNone) {
690 // NSURLCredentialPersistenceNone doesn't work on Tiger, so we have to use session persistence.
695 if (credential.persistence() == CredentialPersistenceForSession && (!d->m_needsSiteSpecificQuirks || ![[[mac(challenge) protectionSpace] host] isEqualToString:@"gallery.me.com"])) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar ... org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/persistence/ org/eclipse/equinox/internal/p2/persistence/CompositeParser$ChildHandler. ...
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jar ... org.eclipse.equinox.internal.p2.persistence.CompositeRepositoryState) org.eclipse.equinox.p2. ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebURLAuthenticationChallenge.idl206 -(id)initWithUser:(NSString *)user password:(NSString *)password persistence:(NSURLCredentialPersistence)persistence
208 HRESULT initWithUser([in] BSTR user, [in] BSTR password, [in] WebURLCredentialPersistence persistence);
216 -(NSURLCredentialPersistence)persistence
218 HRESULT persistence([out, retval] WebURLCredentialPersistence* result);
/external/webkit/Source/WebKit/mac/Panels/
H A DWebAuthenticationPanel.m229 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
258 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h171 encoder->encode(CoreIPC::In(credential.user(), credential.password(), static_cast<uint32_t>(credential.persistence())));
178 int persistence; local
179 if (!decoder->decode(CoreIPC::Out(user, password, persistence)))
182 credential = WebCore::Credential(user, password, static_cast<WebCore::CredentialPersistence>(persistence));
/external/webkit/Tools/DumpRenderTree/mac/
H A DResourceLoadDelegate.mm194 [[challenge sender] useCredential:[NSURLCredential credentialWithUser:nsUser password:nsPassword persistence:NSURLCredentialPersistenceForSession]
H A DLayoutTestControllerMac.mm1002 RetainPtr<NSURLCredential> credential(AdoptNS, [[NSURLCredential alloc] initWithUser:m_username password:m_password persistence:NSURLCredentialPersistenceForSession]);

Completed in 379 milliseconds