Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/net/www/protocol/https/
DHttpsClient.java125 private HostnameVerifier hv; field in HttpsClient
283 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
286 return HttpsClient.New(sf, url, hv, true, httpuc);
291 HostnameVerifier hv, boolean useCache,
293 return HttpsClient.New(sf, url, hv, (String)null, -1, useCache, httpuc);
300 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
303 return HttpsClient.New(sf, url, hv, proxyHost, proxyPort, true, httpuc);
306 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
310 return HttpsClient.New(sf, url, hv, proxyHost, proxyPort, useCache, -1,
314 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
DHostnameVerifierTest.java39 HostnameVerifier hv = HttpsURLConnection.getDefaultHostnameVerifier(); in test_verify() local
40 assertFalse(hv.verify("localhost", session)); in test_verify()