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.java52 * If you want a connection timeout as well, use {@link #createSocket()}
59 * for createSocket variants that specify a hostname. When using methods that
166 * to {@link #createSocket()}. It is harmless to call this method
327 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { method in class:SSLCertificateSocketFactory
328 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
346 public Socket createSocket() throws IOException { method in class:SSLCertificateSocketFactory
347 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
361 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
363 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
378 public Socket createSocket(InetAddres method in class:SSLCertificateSocketFactory
392 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) method in class:SSLCertificateSocketFactory
411 public Socket createSocket(String host, int port) throws IOException { method in class:SSLCertificateSocketFactory
[all...]

Completed in 73 milliseconds