Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:port

39     OpenSSLSocketImpl(String hostname, int port) throws IOException {
40 super(hostname, port);
43 OpenSSLSocketImpl(InetAddress address, int port) throws IOException {
44 super(address, port);
47 OpenSSLSocketImpl(String hostname, int port, InetAddress clientAddress, int clientPort)
49 super(hostname, port, clientAddress, clientPort);
52 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress,
55 super(address, port, clientAddress, clientPort);
58 OpenSSLSocketImpl(Socket socket, String hostname, int port, boolean autoClose)
60 super(socket, hostname, port, autoClose);