OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:handshakeprotocol
(Results
1 - 10
of
10
) sorted by null
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocolTest.java
30
* Tests for <code>
HandshakeProtocol
</code> constructor and methods
36
HandshakeProtocol
protocol = new ClientHandshakeImpl(new SSLEngineImpl(
44
protocol.status =
HandshakeProtocol
.NEED_UNWRAP;
48
protocol.status =
HandshakeProtocol
.FINISHED;
51
assertEquals(protocol.status,
HandshakeProtocol
.NOT_HANDSHAKING);
69
HandshakeProtocol
protocol = new ServerHandshakeImpl(new SSLEngineImpl(
80
HandshakeProtocol
protocol = new ClientHandshakeImpl(new SSLEngineImpl(
99
HandshakeProtocol
hs_protocol = new ClientHandshakeImpl(
143
HandshakeProtocol
hs_protocol = new ClientHandshakeImpl(
187
HandshakeProtocol
protocol = new ClientHandshakeImpl(new SSLEngineImpl
[
all
...]
DelegatedTaskTest.java
31
HandshakeProtocol
protocol = new ClientHandshakeImpl(new SSLEngineImpl(
ServerHandshakeImplTest.java
125
assertEquals(server.status,
HandshakeProtocol
.NEED_UNWRAP);
138
server.status =
HandshakeProtocol
.NEED_UNWRAP;
/libcore/crypto/src/main/java/org/conscrypt/
DelegatedTask.java
25
private final
HandshakeProtocol
handshaker;
28
public DelegatedTask(Runnable action,
HandshakeProtocol
handshaker) {
38
// pass exception to
HandshakeProtocol
HandshakeProtocol.java
41
public abstract class
HandshakeProtocol
{
44
* Handshake status NEED_UNWRAP -
HandshakeProtocol
needs to receive data
54
* Handshake status FINISHED -
HandshakeProtocol
has just finished
59
* Handshake status NEED_TASK -
HandshakeProtocol
needs the results of delegated task
147
* SSLEngine owning this
HandshakeProtocol
152
* SSLSocket owning this
HandshakeProtocol
157
* Creates
HandshakeProtocol
instance
160
protected
HandshakeProtocol
(Object owner) {
211
case
HandshakeProtocol
.NEED_UNWRAP:
213
case
HandshakeProtocol
.FINISHED
[
all
...]
SSLRecordProtocol.java
81
private
HandshakeProtocol
handshakeProtocol
;
103
* @param
handshakeProtocol
:
HandshakeProtocol
108
protected SSLRecordProtocol(
HandshakeProtocol
handshakeProtocol
,
112
this.
handshakeProtocol
=
handshakeProtocol
;
113
this.
handshakeProtocol
.setRecordProtocol(this);
343
handshakeProtocol
.unwrapSSLv2(fragment)
[
all
...]
SSLEngineImpl.java
60
private
HandshakeProtocol
handshakeProtocol
;
108
handshakeProtocol
= new ClientHandshakeImpl(this);
110
handshakeProtocol
= new ServerHandshakeImpl(this);
115
recordProtocol = new SSLRecordProtocol(
handshakeProtocol
,
118
handshakeProtocol
.start();
187
return
handshakeProtocol
.getTask();
359
return
handshakeProtocol
.getStatus();
468
if (
handshakeProtocol
.getStatus().equals(
514
handshakeProtocol
.stop()
[
all
...]
SSLSocketImpl.java
51
private
HandshakeProtocol
handshakeProtocol
;
462
handshakeProtocol
= new ClientHandshakeImpl(this);
467
handshakeProtocol
= new ServerHandshakeImpl(this);
471
recordProtocol = new SSLRecordProtocol(
handshakeProtocol
,
480
handshakeProtocol
.start();
587
handshakeProtocol
.shutdown();
588
handshakeProtocol
= null;
617
if (!
handshakeProtocol
.getStatus().equals(
722
while (!(status =
handshakeProtocol
.getStatus()).equals
[
all
...]
ClientHandshakeImpl.java
56
public class ClientHandshakeImpl extends
HandshakeProtocol
{
ServerHandshakeImpl.java
55
public class ServerHandshakeImpl extends
HandshakeProtocol
{
Completed in 1107 milliseconds