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

/frameworks/base/core/java/android/net/
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
167 * to {@link #createSocket()}. It is harmless to call this method
428 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { method in class:SSLCertificateSocketFactory
429 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
449 public Socket createSocket() throws IOException { method in class:SSLCertificateSocketFactory
450 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
466 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
468 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
485 public Socket createSocket(InetAddres method in class:SSLCertificateSocketFactory
501 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
522 public Socket createSocket(String host, int port) throws IOException { method in class:SSLCertificateSocketFactory
[all...]

Completed in 39 milliseconds