Searched refs:createSocket (Results 1 - 25 of 152) sorted by relevance

1234567

/openjdk10/jdk/src/java.base/share/classes/javax/net/
H A DSocketFactory.java117 public Socket createSocket() throws IOException { method in class:SocketFactory
155 public abstract Socket createSocket(String host, int port) method in class:SocketFactory
187 createSocket(String host, int port, InetAddress localHost, int localPort) method in class:SocketFactory
213 public abstract Socket createSocket(InetAddress host, int port) method in class:SocketFactory
244 createSocket(InetAddress address, int port, method in class:SocketFactory
264 public Socket createSocket() { method in class:DefaultSocketFactory
268 public Socket createSocket(String host, int port) method in class:DefaultSocketFactory
274 public Socket createSocket(InetAddress address, int port) method in class:DefaultSocketFactory
280 public Socket createSocket(String host, int port, method in class:DefaultSocketFactory
287 public Socket createSocket(InetAddres method in class:DefaultSocketFactory
[all...]
/openjdk10/jdk/src/java.rmi/share/classes/java/rmi/server/
H A DRMIClientSocketFactory.java72 public Socket createSocket(String host, int port) method in interface:RMIClientSocketFactory
H A DRMISocketFactory.java57 * public Socket createSocket(String host, int port) throws IOException {
60 * .createSocket(host, port);
104 public abstract Socket createSocket(String host, int port) method in class:RMISocketFactory
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java71 public Socket createSocket() { method in class:SSLSocketFactoryImpl
85 public Socket createSocket(String host, int port) method in class:SSLSocketFactoryImpl
108 public Socket createSocket(Socket s, String host, int port, method in class:SSLSocketFactoryImpl
114 public Socket createSocket(Socket s, InputStream consumed, method in class:SSLSocketFactoryImpl
134 public Socket createSocket(InetAddress address, int port) method in class:SSLSocketFactoryImpl
149 public Socket createSocket(String host, int port, method in class:SSLSocketFactoryImpl
165 public Socket createSocket(InetAddress address, int port, method in class:SSLSocketFactoryImpl
/openjdk10/jdk/test/sun/security/ssl/SSLSocketImpl/
H A DLoopbackSSLSocket.java27 * @summary Loopback SSLSocketImpl createSocket is throwing an exception.
42 SSLSocket s = (SSLSocket)sf.createSocket((String)null, 0);
/openjdk10/jdk/test/sun/net/www/protocol/https/HttpsURLConnection/
H A DHttpsCreateSockTest.java27 * @summary createSocket() - smpatch fails using 1.6.0_10 because of
58 * connection is made one of the socket factories createSocket methods, that
159 * createSocket(Socket, String, int, boolean), has been called.
164 public Socket createSocket(InetAddress host, int port) throws IOException { method in class:HttpsCreateSockTest.SimpleSSLSocketFactory
166 return SocketFactory.getDefault().createSocket(host, port);
170 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, method in class:HttpsCreateSockTest.SimpleSSLSocketFactory
173 return SocketFactory.getDefault().createSocket(address, port, localAddress, localPort);
177 public Socket createSocket(String host, int port) throws IOException { method in class:HttpsCreateSockTest.SimpleSSLSocketFactory
179 return SocketFactory.getDefault().createSocket(host, port);
183 public Socket createSocket(Strin method in class:HttpsCreateSockTest.SimpleSSLSocketFactory
191 public Socket createSocket(Socket s, String host, int port, method in class:HttpsCreateSockTest.SimpleSSLSocketFactory
[all...]
H A DHttpsSocketFacTest.java58 * connection is made one of the socket factories createSocket methods, that
165 * createSocket(Socket, String, int, boolean), has been called.
171 public Socket createSocket() throws IOException { method in class:HttpsSocketFacTest.SimpleSSLSocketFactory
173 return SocketFactory.getDefault().createSocket();
177 public Socket createSocket(InetAddress host, int port) throws IOException { method in class:HttpsSocketFacTest.SimpleSSLSocketFactory
179 return SocketFactory.getDefault().createSocket(host, port);
183 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, method in class:HttpsSocketFacTest.SimpleSSLSocketFactory
186 return SocketFactory.getDefault().createSocket(address, port, localAddress, localPort);
190 public Socket createSocket(String host, int port) throws IOException { method in class:HttpsSocketFacTest.SimpleSSLSocketFactory
192 return SocketFactory.getDefault().createSocket(hos
196 public Socket createSocket(String host, int port, InetAddress localHost, method in class:HttpsSocketFacTest.SimpleSSLSocketFactory
204 public Socket createSocket(Socket s, String host, int port, method in class:HttpsSocketFacTest.SimpleSSLSocketFactory
[all...]
/openjdk10/jdk/test/javax/net/ssl/sanity/pluggability/
H A DMySSLSocketFacImpl.java52 public Socket createSocket(Socket s, String host, int port, method in class:MySSLSocketFacImpl
54 public Socket createSocket(InetAddress host, int port) { method in class:MySSLSocketFacImpl
57 public Socket createSocket(InetAddress address, int port, method in class:MySSLSocketFacImpl
61 public Socket createSocket(String host, int port) { method in class:MySSLSocketFacImpl
64 public Socket createSocket(String host, int port, InetAddress method in class:MySSLSocketFacImpl
/openjdk10/jdk/src/java.base/share/classes/javax/net/ssl/
H A DSSLSocketFactory.java199 public abstract Socket createSocket(Socket s, String host, method in class:SSLSocketFactory
245 public Socket createSocket(Socket s, InputStream consumed, method in class:SSLSocketFactory
267 public Socket createSocket() method in class:DefaultSSLSocketFactory
274 public Socket createSocket(String host, int port) method in class:DefaultSSLSocketFactory
281 public Socket createSocket(Socket s, String host, method in class:DefaultSSLSocketFactory
289 public Socket createSocket(InetAddress address, int port) method in class:DefaultSSLSocketFactory
296 public Socket createSocket(String host, int port, method in class:DefaultSSLSocketFactory
304 public Socket createSocket(InetAddress address, int port, method in class:DefaultSSLSocketFactory
H A DSSLContextSpi.java147 return (SSLSocket)factory.createSocket();
162 * {@linkplain javax.net.SocketFactory#createSocket
163 * SocketFactory.createSocket()} method of this context's SocketFactory.
185 * {@linkplain javax.net.SocketFactory#createSocket
186 * SocketFactory.createSocket()} method of this context's SocketFactory.
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/
H A DTCPDirectSocketFactory.java38 public Socket createSocket(String host, int port) throws IOException method in class:TCPDirectSocketFactory
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/legacy/connection/
H A DORBSocketFactory.java90 * <code>createSocket(SocketInfo socketInfo)</code>
320 * <code>createSocket(SocketInfo socketInfo)</code> <p>
352 public Socket createSocket(SocketInfo socketInfo) method in interface:ORBSocketFactory
/openjdk10/jdk/test/javax/net/ssl/
H A DFix5070632.java27 * @summary Default SSLSockeFactory override createSocket() now
52 fac.createSocket();
/openjdk10/jdk/test/javax/management/remote/mandatory/socketFactories/
H A DRMIClientFactory.java39 public Socket createSocket(String host, int port) throws IOException { method in class:RMIClientFactory
43 System.out.println("Calling createSocket("+host+","+port+")");
/openjdk10/jdk/test/java/rmi/transport/reuseDefaultPort/
H A DReuseDefaultPort.java79 public Socket createSocket(String host, int port) throws IOException { method in class:ReuseDefaultPort.SF
80 System.err.format("in SF::createSocket: %s, %d%n", host, port);
81 return defaultFactory.createSocket(host, port);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/transport/
H A DORBSocketFactory.java48 public Socket createSocket(String type, method in interface:ORBSocketFactory
/openjdk10/jdk/test/com/sun/corba/transport/
H A DKeepAliveSockets.java63 Socket s = sfImpl.createSocket("ignore", isa);
/openjdk10/jdk/test/sun/security/ssl/ServerHandshaker/
H A DGetPeerHostClient.java46 s = (SSLSocket) factory.createSocket(server, serverPort);
/openjdk10/jdk/src/java.rmi/share/classes/javax/rmi/ssl/
H A DSslRMIClientSocketFactory.java51 * subclasses by overriding the {@link #createSocket(String,int)}
57 * the {@link #createSocket(String,int)} method will call {@link
64 * the {@link #createSocket(String,int)} method will call {@link
89 // createSocket() is called - note that the default SSLSocketFactory
114 public Socket createSocket(String host, int port) throws IOException { method in class:SslRMIClientSocketFactory
121 sslSocketFactory.createSocket(host, port);
201 // overriding createSocket(String host, int port).
/openjdk10/jdk/test/sun/security/ssl/SocketCreation/
H A DSocketCreation.java239 (SSLSocket) sslsf.createSocket(s,
308 System.out.println("Client: Will call createSocket(String, int)");
309 return sslsf.createSocket("localhost", serverPort);
317 System.out.println("Client: Will call createSocket(InetAddress, int)");
318 return sslsf.createSocket(InetAddress.getByName("localhost"),
327 System.out.println("Client: Will call createSocket(String," +
329 return sslsf.createSocket("localhost", serverPort,
339 System.out.println("Client: Will call createSocket(InetAddress," +
341 return sslsf.createSocket(InetAddress.getByName("localhost"),
352 System.out.println("Client: Will call createSocket()");
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/net/
H A DNetworkClient.java162 s = createSocket();
169 s = createSocket();
194 * The following method, createSocket, is provided to allow the
198 protected Socket createSocket() throws IOException { method in class:NetworkClient
/openjdk10/jdk/src/java.base/share/classes/sun/net/sdp/
H A DSdpSupport.java53 public static FileDescriptor createSocket() throws IOException { method in class:SdpSupport
/openjdk10/jdk/test/java/rmi/Naming/
H A DUnderscoreHost.java62 public synchronized Socket createSocket(String host, int port) method in class:UnderscoreHost.HostVerifyingSocketFactory
/openjdk10/jdk/test/sun/security/ssl/CipherSuite/
H A DSSL_NULL.java71 SSLSocketFactory.getDefault().createSocket(
/openjdk10/jdk/test/sun/security/ssl/GenSSLConfigs/
H A DClientThread.java78 s = (SSLSocket) factory.createSocket(server, port);

Completed in 2112 milliseconds

1234567