Searched defs:secure (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DCookieManager.java45 private static final String SECURE = "secure";
134 boolean secure; field in class:CookieManager.Cookie
316 // secure cookies can't be overwritten by non-HTTPS url
317 if (!cookieEntry.secure || HTTPS.equals(uri.mScheme)) {
320 cookieEntry.secure = cookie.secure;
402 boolean secure = HTTPS.equals(uri.mScheme);
413 && (!cookie.secure || secure)
703 * path=PATH; domain=DOMAIN_NAME; secure httponl
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java79 boolean secure, String path, int outerLoop, int innerLoop,
85 Socket socket = secure ? socketFactory.createSocket()
180 private void fetch(String host, int port, boolean secure, String path, argument
183 fetch(clientFactory, host, port, secure, path, outerLoop, innerLoop,
78 fetch(SSLSocketFactory socketFactory, String host, int port, boolean secure, String path, int outerLoop, int innerLoop, int delay, int timeout) argument

Completed in 74 milliseconds