/external/webkit/Source/WebCore/platform/network/ |
Credential.cpp | 44 Credential::Credential(const String& user, const String& password, CredentialPersistence persistence) 47 , m_persistence(persistence) 54 Credential::Credential(const Credential& original, CredentialPersistence persistence) 57 , m_persistence(persistence) 91 CredentialPersistence Credential::persistence() const function in class:WebCore::Credential 97 Credential::Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence persistence) 100 , m_persistence(persistence) 125 // Check persistence first since all credential types 126 // have the persistence property. 127 if (a.persistence() != b.persistence() [all...] |
Credential.h | 67 CredentialPersistence persistence() const;
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/META-INF/ |
jdoconfig.xml | 6 <persistence-manager-factory name="transactions-optional"> 14 </persistence-manager-factory>
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/war/WEB-INF/classes/META-INF/ |
jdoconfig.xml | 6 <persistence-manager-factory name="transactions-optional"> 14 </persistence-manager-factory>
|
/external/webkit/Source/WebCore/platform/network/mac/ |
AuthenticationMac.mm | 246 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...] |
/external/webkit/Source/WebCore/platform/network/cf/ |
AuthenticationCF.cpp | 98 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);
|
/external/webkit/Source/WebKit/win/ |
WebURLCredential.h | 53 /* [in] */ WebURLCredentialPersistence persistence); 58 virtual HRESULT STDMETHODCALLTYPE persistence(
|
WebURLCredential.cpp | 108 /* [in] */ WebURLCredentialPersistence persistence) 111 switch (persistence) { 137 HRESULT STDMETHODCALLTYPE WebURLCredential::persistence( function in class:WebURLCredential 140 switch (m_credential.persistence()) {
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKCredential.cpp | 40 WKCredentialRef WKCredentialCreate(WKStringRef username, WKStringRef password, WKCredentialPersistence persistence) 42 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence));
|
/external/webkit/Source/WebKit2/UIProcess/Authentication/ |
WebCredential.h | 47 static PassRefPtr<WebCredential> create(WebString* username, WebString* password, WebCore::CredentialPersistence persistence) 49 return adoptRef(new WebCredential(WebCore::Credential(username->string(), password->string(), persistence)));
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebURLAuthenticationChallenge.idl | 206 -(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/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/ |
log4j.properties | 13 log4j.category.DataNucleus.Persistence=WARN, A1
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/war/WEB-INF/classes/ |
log4j.properties | 13 log4j.category.DataNucleus.Persistence=WARN, A1
|
/external/chromium/net/spdy/ |
spdy_settings_storage.cc | 32 // for persistence.
|
/external/chromium/chrome/browser/net/ |
sqlite_persistent_cookie_store_unittest.cc | 93 // Reload and test for persistence 100 // Now delete the cookie and check persistence again.
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_profile_model_associator.h | 52 // associating models, and send to the WebDatabase for persistence. 144 // models, and send to the WebDatabase for persistence.
|
/external/qemu/slirp/ |
tcp_timer.h | 43 #define TCPT_PERSIST 1 /* retransmit persistence */ 92 #define TCPTV_PERSMIN ( 5*PR_SLOWHZ) /* retransmit persistence */
|
/external/qemu/slirp-android/ |
tcp_timer.h | 43 #define TCPT_PERSIST 1 /* retransmit persistence */ 92 #define TCPTV_PERSMIN ( 5*PR_SLOWHZ) /* retransmit persistence */
|
/external/webkit/Source/WebKit2/Shared/ |
WebCoreArgumentCoders.h | 171 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/yaffs2/yaffs2/direct/ |
yaffs_fileem.c | 16 // THis is only intended as test code to test persistence etc.
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
Hotseat.java | 69 /* Get the orientation invariant order of the item in the hotseat for persistence. */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
hdlcdrv.h | 29 int ppersist; /* the p-persistence 0..255 */
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
HttpURLConnectionTest.java | 680 "HTTP Server for persistence checking", 2); 731 "HTTP Server for persistence checking", 2); 778 "HTTP Server for persistence checking", 2); 828 "HTTP Server for persistence checking", 2); [all...] |
/external/webkit/Source/WebKit/mac/Panels/ |
WebAuthenticationPanel.m | 229 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];
|
/sdk/sdkstats/src/com/android/sdkstats/ |
DdmsPreferenceStore.java | 30 * Manages persistence settings for DDMS. 32 * For convenience, this also stores persistence settings related to the "server stats" ping
|