Searched refs:getInt8 (Results 1 - 12 of 12) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DHandshakeInStream.java122 int getInt8() throws IOException { method in class:HandshakeInStream
129 return (getInt8() << 8) | getInt8();
134 return (getInt8() << 16) | (getInt8() << 8) | getInt8();
139 return (getInt8() << 24) | (getInt8() << 16)
140 | (getInt8() << 8) | getInt8();
[all...]
H A DSignatureAlgorithmsExtension.java84 int hash = s.getInt8(); // hash algorithm
85 int signature = s.getInt8(); // signature algorithm
H A DCertStatusReqExtension.java123 statReqType = StatusRequestType.get(s.getInt8());
H A DRenegotiationInfoExtension.java75 int renegoInfoDataLen = s.getInt8();
H A DMaxFragmentLengthExtension.java80 maxFragmentLength = s.getInt8();
H A DCertStatusReqItemV2.java131 statReqType = StatusRequestType.get(in.getInt8());
H A DHandshakeMessage.java265 ProtocolVersion.valueOf(input.getInt8(), input.getInt8());
347 protocolVersion = ProtocolVersion.valueOf(s.getInt8(), s.getInt8());
524 protocolVersion = ProtocolVersion.valueOf(input.getInt8(),
525 input.getInt8());
529 cipherSuite = CipherSuite.valueOf(input.getInt8(), input.getInt8());
530 compression_method = (byte)input.getInt8();
772 statusType = StatusRequestType.get(input.getInt8());
[all...]
H A DServerNameExtension.java125 int code = s.getInt8(); // NameType
H A DHandshaker.java1036 messageType = (byte)input.getInt8();
/openjdk10/nashorn/test/script/basic/
H A Ddataview_getset.js46 Assert.assertEquals(dv.getInt8(1), 123);
48 Assert.assertEquals(dv.getInt8(1, true), 123);
/openjdk10/jdk/test/javax/net/ssl/templates/
H A DSSLExplorer.java474 int code = getInt8(input); // name_type
519 private static int getInt8(ByteBuffer input) { method in class:SSLExplorer
533 ignoreByteVector(input, getInt8(input));
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeDataView.java204 public static int getInt8(final Object self, final Object byteOffset) { method in class:NativeDataView
220 public static int getInt8(final Object self, final int byteOffset) { method in class:NativeDataView

Completed in 179 milliseconds