Home
last modified time | relevance | path

Searched refs:socketFactory (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/libcore/net/http/
DHttpURLConnectionFactory.java99 public URLConnection openConnection(@NonNull URL url, @NonNull SocketFactory socketFactory, in openConnection() argument
101 return mFactory.openConnection(url, socketFactory, proxy); in openConnection()
/libcore/tools/docs/crypto/src/java/libcore/java/security/
DListProviders.java141 SSLSocketFactory socketFactory = sslContext.getSocketFactory(); in main() local
142 for (String suite : socketFactory.getSupportedCipherSuites()) { in main()
145 for (String suite : socketFactory.getDefaultCipherSuites()) { in main()
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
DHttpsURLConnectionTest.java202 SSLSocketFactory socketFactory = ctx.getSocketFactory(); in testSetDefaultSSLSocketFactory() local
204 HttpsURLConnection.setDefaultSSLSocketFactory(socketFactory); in testSetDefaultSSLSocketFactory()
207 socketFactory, HttpsURLConnection.getDefaultSSLSocketFactory()); in testSetDefaultSSLSocketFactory()
262 SSLSocketFactory socketFactory = ctx.getSocketFactory(); in testSetSSLSocketFactory() local
263 connection.setSSLSocketFactory(socketFactory); in testSetSSLSocketFactory()
280 assertSame("Result differs from expected", socketFactory, connection.getSSLSocketFactory()); in testSetSSLSocketFactory()