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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DelegatedTask.java 30 private final HandshakeProtocol handshaker;
40 public DelegatedTask(PrivilegedExceptionAction<Void> action, HandshakeProtocol handshaker, AccessControlContext context) {
54 // pass exception to HandshakeProtocol
57 // 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) {
213 case HandshakeProtocol.NEED_UNWRAP:
215 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);
344 handshakeProtocol.unwrapSSLv2(fragment)
    [all...]
SSLEngineImpl.java 61 private HandshakeProtocol handshakeProtocol;
110 handshakeProtocol = new ClientHandshakeImpl(this);
112 handshakeProtocol = new ServerHandshakeImpl(this);
117 recordProtocol = new SSLRecordProtocol(handshakeProtocol,
120 handshakeProtocol.start();
189 return handshakeProtocol.getTask();
361 return handshakeProtocol.getStatus();
470 if (handshakeProtocol.getStatus().equals(
516 handshakeProtocol.stop()
    [all...]
SSLSocketImpl.java 47 private HandshakeProtocol handshakeProtocol;
426 handshakeProtocol = new ClientHandshakeImpl(this);
431 handshakeProtocol = new ServerHandshakeImpl(this);
435 recordProtocol = new SSLRecordProtocol(handshakeProtocol,
444 handshakeProtocol.start();
581 handshakeProtocol.shutdown();
582 handshakeProtocol = null;
611 if (!handshakeProtocol.getStatus().equals(
717 while (!(status = handshakeProtocol.getStatus()).equals
    [all...]
ClientHandshakeImpl.java 56 public class ClientHandshakeImpl extends HandshakeProtocol {
ServerHandshakeImpl.java 56 public class ServerHandshakeImpl extends HandshakeProtocol {

Completed in 235 milliseconds