Home | History | Annotate | Download | only in ssl

Lines Matching refs:getSSLSocket

55         SSLSocket ssl = getSSLSocket();
67 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport);
73 getSSLSocket(InetAddress.getLocalHost(), sport + 1);
80 getSSLSocket(InetAddress.getLocalHost(), invalidPort[i]);
95 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport,
103 getSSLSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082);
109 getSSLSocket(InetAddress.getLocalHost(), -1, InetAddress.getLocalHost(), sport + 1);
114 getSSLSocket(InetAddress.getLocalHost(), sport, InetAddress.getLocalHost(), -1);
120 getSSLSocket(InetAddress.getLocalHost(), Integer.MIN_VALUE,
129 getSSLSocket(InetAddress.getLocalHost(), sport,
144 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport);
150 getSSLSocket("localhost", 8082);
157 getSSLSocket(InetAddress.getLocalHost().getHostName(), invalidPort[i]);
164 getSSLSocket("bla-bla", sport);
179 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport,
186 getSSLSocket("localhost", 8081, InetAddress.getLocalHost(), 8082);
194 getSSLSocket(InetAddress.getLocalHost().getHostName(), invalidPort[i],
200 getSSLSocket(InetAddress.getLocalHost().getHostName(), sport,
209 getSSLSocket("bla-bla", sport, InetAddress.getLocalHost(), portNumber);
235 SSLSocket ssl = getSSLSocket();
250 SSLSocket ssl = getSSLSocket();
273 SSLSocket ssl = getSSLSocket();
287 SSLSocket ssl = getSSLSocket();
300 SSLSocket ssl = getSSLSocket();
312 SSLSocket ssl = getSSLSocket();
323 SSLSocket ssl = getSSLSocket();
346 SSLSocket ssl = getSSLSocket();
355 SSLSocket ssl = getSSLSocket();
366 SSLSocket ssl = getSSLSocket();
392 SSLSocket ssl = getSSLSocket();
398 ssl = getSSLSocket("localhost", startServer("UseClientMode"));
416 SSLSocket ssl = getSSLSocket();
613 private SSLSocket getSSLSocket() throws IOException {
617 private SSLSocket getSSLSocket(InetAddress host, int port) throws IOException {
621 private SSLSocket getSSLSocket(String host, int port) throws UnknownHostException, IOException {
625 private SSLSocket getSSLSocket(InetAddress host, int port, InetAddress localHost, int localPort)
633 private SSLSocket getSSLSocket(String host, int port, InetAddress localHost, int localPort)