Searched refs:maxRecordSize (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRecord.java63 static final int maxRecordSize = field in interface:Record
93 * The maximum large record size is defined as maxRecordSize plus 2^14,
97 maxRecordSize // Max size with a conforming implemenation
H A DEngineOutputRecord.java85 return maxRecordSize;
H A DInputRecord.java84 super(new byte[maxRecordSize]);
543 * Grow "buf" if needed. Since buf is maxRecordSize by default,
566 if (count < 0 || count > (maxRecordSize - headerSize)) {
H A DOutputRecord.java97 return maxRecordSize;
H A DSSLSessionImpl.java736 Record.maxLargeRecordSize : Record.maxRecordSize;
H A DSSLEngineImpl.java1142 if (netData.remaining() < outputRecord.maxRecordSize) {

Completed in 565 milliseconds