HomeSort by relevance Sort by last modified time
    Searched refs:handshakeProtocol (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
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 61 private HandshakeProtocol handshakeProtocol;
109 handshakeProtocol = new ClientHandshakeImpl(this);
111 handshakeProtocol = new ServerHandshakeImpl(this);
116 recordProtocol = new SSLRecordProtocol(handshakeProtocol,
119 handshakeProtocol.start();
188 return handshakeProtocol.getTask();
360 return handshakeProtocol.getStatus();
469 if (handshakeProtocol.getStatus().equals(
515 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 75 milliseconds