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

/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java65 * If you want a connection timeout as well, use {@link #createSocket()}
72 * for createSocket variants that specify a hostname. When using methods that
176 * to {@link #createSocket()}. It is harmless to call this method
254 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { method in class:SSLCertificateSocketFactory
255 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
272 public Socket createSocket() throws IOException { method in class:SSLCertificateSocketFactory
273 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
286 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
288 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
302 public Socket createSocket(InetAddres method in class:SSLCertificateSocketFactory
315 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
333 public Socket createSocket(String host, int port) throws IOException { method in class:SSLCertificateSocketFactory
[all...]

Completed in 64 milliseconds