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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertProtocol.java 133 private SSLRecordProtocol recordProtocol;
148 protected void setRecordProtocol(SSLRecordProtocol recordProtocol) {
149 this.recordProtocol = recordProtocol;
268 byte[] res = recordProtocol.wrap(ContentType.ALERT, alert, 0, 2);
279 recordProtocol = null;
SSLEngineImpl.java 57 protected SSLRecordProtocol recordProtocol;
116 recordProtocol = new SSLRecordProtocol(handshakeProtocol,
435 if (src.remaining() < recordProtocol.getMinRecordSize()) {
455 if (capacity < recordProtocol.getDataSize(src.remaining())) {
464 int type = recordProtocol.unwrap();
471 session = recordProtocol.getSession();
608 if (capacity < recordProtocol.getRecordSize(2)) {
643 if (capacity < recordProtocol.getMinRecordSize()) {
647 +recordProtocol.getMinRecordSize()+")");
659 (capacity < recordProtocol.getRecordSize
    [all...]
HandshakeProtocol.java 76 protected SSLRecordProtocol recordProtocol;
175 * @param recordProtocol
177 public void setRecordProtocol(SSLRecordProtocol recordProtocol) {
178 this.recordProtocol = recordProtocol;
275 return recordProtocol.wrap(ContentType.HANDSHAKE, io_stream);
279 return recordProtocol.getChangeCipherSpecMesage(getSession());
282 return recordProtocol.wrap(ContentType.HANDSHAKE,
298 recordProtocol.alert(AlertProtocol.WARNING, description);
SSLSocketImpl.java 49 protected SSLRecordProtocol recordProtocol;
471 recordProtocol = new SSLRecordProtocol(handshakeProtocol,
589 recordProtocol.shutdown();
590 recordProtocol = null;
615 switch (type = recordProtocol.unwrap()) {
683 output.write(recordProtocol.wrap(ContentType.APPLICATION_DATA,
687 output.write(recordProtocol.wrap(
695 recordProtocol.wrap(ContentType.APPLICATION_DATA,
742 switch (type = recordProtocol.unwrap()) {
789 session = recordProtocol.getSession()
    [all...]
ClientHandshakeImpl.java 95 recordProtocol.setVersion(session.protocol.version);
116 recordProtocol.setVersion(session.protocol.version);
244 recordProtocol.setVersion(session.protocol.version);
ServerHandshakeImpl.java 414 recordProtocol.setVersion(server_version);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImplTest.java 62 SSLRecordProtocol recordProtocol = new SSLRecordProtocol(server,

Completed in 854 milliseconds