Searched refs:sslDelegate (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DAsyncSSLConnection.java47 final AsyncSSLDelegate sslDelegate; field in class:AsyncSSLConnection
53 sslDelegate = new AsyncSSLDelegate(plainConnection, client, ap);
78 sslDelegate.connect();
89 return plainConnection.connected() && sslDelegate.connected();
109 sslDelegate.enableCallback();
123 sslDelegate.writeAsync(ByteBufferReference.toReferences(bufs));
124 sslDelegate.flushAsync();
131 sslDelegate.writeAsync(ByteBufferReference.toReferences(buffer));
132 sslDelegate.flushAsync();
139 sslDelegate
[all...]
H A DSSLConnection.java47 SSLDelegate sslDelegate; field in class:SSLConnection
55 this.sslDelegate = new SSLDelegate(delegate.channel(), client, alpn);
63 this.sslDelegate = new SSLDelegate(delegate.channel(), client, alpn);
79 AsyncSSLDelegate adel = c.sslDelegate;
80 this.sslDelegate = new SSLDelegate(adel.engine, delegate.channel(), client);
86 return sslDelegate.getSSLParameters();
111 WrapperResult r = sslDelegate.sendData(buffers, start, number);
124 WrapperResult r = sslDelegate.sendData(buffer);
165 WrapperResult r = sslDelegate.recvData(ByteBuffer.allocate(8192));
H A DSSLTunnelConnection.java47 protected SSLDelegate sslDelegate; field in class:SSLTunnelConnection
53 this.sslDelegate = new SSLDelegate(delegate.channel(), client, null);
68 this.sslDelegate = new SSLDelegate(delegate.channel(),
88 return sslDelegate.getSSLParameters();
113 WrapperResult r = sslDelegate.sendData(buffers, start, number);
126 WrapperResult r = sslDelegate.sendData(buffer);
169 WrapperResult r = sslDelegate.recvData(buf);

Completed in 190 milliseconds