OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:handshakeProtocol
(Results
1 - 3
of
3
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
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
...]
Completed in 1556 milliseconds