Searched refs:SSLSessionCache (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/
H A DSSLSessionCache.java36 public final class SSLSessionCache { class
37 private static final String TAG = "SSLSessionCache";
48 public SSLSessionCache(File dir) throws IOException { method in class:SSLSessionCache
58 public SSLSessionCache(Context context) { method in class:SSLSessionCache
H A DSSLCertificateSocketFactory.java48 * <li>Optional SSL session caching with {@link SSLSessionCache}
103 int handshakeTimeoutMillis, SSLSessionCache cache, boolean secure) {
126 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
129 public static SSLSocketFactory getDefault(int handshakeTimeoutMillis, SSLSessionCache cache) {
142 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
145 public static SSLSocketFactory getInsecure(int handshakeTimeoutMillis, SSLSessionCache cache) {
155 * @param cache The {@link SSLSessionCache} to use, or null for no cache.
159 int handshakeTimeoutMillis, SSLSessionCache cache) {
374 * (unless created with {@link #getInsecure(int, SSLSessionCache)}).
439 * (unless created with {@link #getInsecure(int, SSLSessionCache)})
[all...]
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java62 import android.net.SSLSessionCache;
128 SSLSessionCache sessionCache = context == null ? null : new SSLSessionCache(context);

Completed in 796 milliseconds