Home
last modified time | relevance | path

Searched refs:httpsConnection (Results 1 – 2 of 2) sorted by relevance

/external/aws-sdk-java-v2/http-clients/url-connection-client/src/main/java/software/amazon/awssdk/http/urlconnection/
DUrlConnectionHttpClient.java199 HttpsURLConnection httpsConnection = (HttpsURLConnection) connection; in createDefaultConnection() local
202 httpsConnection.setHostnameVerifier(NoOpHostNameVerifier.INSTANCE); in createDefaultConnection()
204 httpsConnection.setSSLSocketFactory(socketFactory); in createDefaultConnection()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DURLConnectionTest.java555 HttpsURLConnection httpsConnection = (HttpsURLConnection) client.open(server.getUrl("/foo")); in inspectHandshakeThroughoutRequestLifecycle() local
559 httpsConnection.getCipherSuite(); in inspectHandshakeThroughoutRequestLifecycle()
565 httpsConnection.connect(); in inspectHandshakeThroughoutRequestLifecycle()
566 assertNotNull(httpsConnection.getCipherSuite()); in inspectHandshakeThroughoutRequestLifecycle()
569 assertContent("", httpsConnection); in inspectHandshakeThroughoutRequestLifecycle()
570 assertNotNull(httpsConnection.getCipherSuite()); in inspectHandshakeThroughoutRequestLifecycle()
573 httpsConnection.disconnect(); in inspectHandshakeThroughoutRequestLifecycle()
574 assertNotNull(httpsConnection.getCipherSuite()); in inspectHandshakeThroughoutRequestLifecycle()