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

/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DAdbUtils.java45 public static Socket createSocket() throws IOException{ method in class:AdbUtils
51 * The given streams must belong to a socket created by createSocket().
/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java53 * If you want a connection timeout as well, use {@link #createSocket()}
60 * for createSocket variants that specify a hostname. When using methods that
167 * to {@link #createSocket()}. It is harmless to call this method
377 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { method in class:SSLCertificateSocketFactory
378 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
396 public Socket createSocket() throws IOException { method in class:SSLCertificateSocketFactory
397 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
411 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
413 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
428 public Socket createSocket(InetAddres method in class:SSLCertificateSocketFactory
442 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
461 public Socket createSocket(String host, int port) throws IOException { method in class:SSLCertificateSocketFactory
[all...]

Completed in 491 milliseconds