Searched defs:createSocket (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java70 Socket createSocket( method in interface:LayeredSocketFactory
H A DSocketFactory.java70 Socket createSocket() method in interface:SocketFactory
79 * {@link #createSocket createSocket}.
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DSSLSocketFactory.java279 public Socket createSocket() method in class:SSLSocketFactory
283 return (SSLSocket) this.socketfactory.createSocket();
305 ((sock != null) ? sock : createSocket());
372 // This instanceof check is in line with createSocket() above.
388 public Socket createSocket( method in class:SSLSocketFactory
394 SSLSocket sslSocket = (SSLSocket) this.socketfactory.createSocket(
/frameworks/base/core/java/android/net/
H A DNetwork.java140 Socket socket = createSocket();
152 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException { method in class:Network.NetworkBoundSocketFactory
157 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, method in class:Network.NetworkBoundSocketFactory
159 Socket socket = createSocket();
166 public Socket createSocket(InetAddress host, int port) throws IOException { method in class:Network.NetworkBoundSocketFactory
167 Socket socket = createSocket();
173 public Socket createSocket(String host, int port) throws IOException { method in class:Network.NetworkBoundSocketFactory
178 public Socket createSocket() throws IOException { method in class:Network.NetworkBoundSocketFactory
H A DSSLCertificateSocketFactory.java54 * If you want a connection timeout as well, use {@link #createSocket()}
61 * for createSocket variants that specify a hostname. When using methods that
175 * to {@link #createSocket()}. It is harmless to call this method
436 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { method in class:SSLCertificateSocketFactory
437 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
457 public Socket createSocket() throws IOException { method in class:SSLCertificateSocketFactory
458 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
474 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
476 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
493 public Socket createSocket(InetAddres method in class:SSLCertificateSocketFactory
509 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
530 public Socket createSocket(String host, int port) throws IOException { method in class:SSLCertificateSocketFactory
[all...]

Completed in 106 milliseconds