OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:io_stream
(Results
1 - 6
of
6
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
ServerHandshakeImpl.java
96
io_stream
.append(bytes);
97
while (
io_stream
.available() > 0) {
100
io_stream
.mark();
102
handshakeType =
io_stream
.read();
103
length =
io_stream
.readUint24();
104
if (
io_stream
.available() < length) {
105
io_stream
.reset();
119
clientHello = new ClientHello(
io_stream
, length);
137
clientCert = new CertificateMessage(
io_stream
, length);
168
certificateVerify = new CertificateVerify(
io_stream
, length)
[
all
...]
ClientHandshakeImpl.java
153
io_stream
.append(bytes);
154
while (
io_stream
.available() > 0) {
155
io_stream
.mark();
158
handshakeType =
io_stream
.read();
159
length =
io_stream
.readUint24();
160
if (
io_stream
.available() < length) {
161
io_stream
.reset();
168
io_stream
.removeFromMarkedPosition();
190
serverHello = new ServerHello(
io_stream
, length);
255
serverCert = new CertificateMessage(
io_stream
, length)
[
all
...]
HandshakeProtocol.java
71
protected HandshakeIODataStream
io_stream
= new HandshakeIODataStream();
field in class:HandshakeProtocol
202
if (
io_stream
.hasData() || needSendCCSpec ||
271
if (
io_stream
.hasData()) {
272
return recordProtocol.wrap(ContentType.HANDSHAKE,
io_stream
);
345
byte[] md5_digest =
io_stream
.getDigestMD5();
346
byte[] sha_digest =
io_stream
.getDigestSHA();
389
byte[] handshake_messages =
io_stream
.getMessages();
437
io_stream
.writeUint8(message.getType());
438
io_stream
.writeUint24(message.length());
439
message.send(
io_stream
);
[
all
...]
/external/blktrace/btreplay/
btrecord.c
90
struct
io_stream
{
struct
225
static void write_file_hdr(struct
io_stream
*stream, struct io_file_hdr *hdr)
247
* @
io_stream
: IO stream being added to
251
static inline void io_bunch_create(struct
io_stream
*stream, __u64 start_time)
270
static void io_bunch_add(struct
io_stream
*stream, struct io_spec *spec)
571
static inline void bunch_output_hdr(struct
io_stream
*stream)
597
static inline void bunch_output_pkts(struct
io_stream
*stream)
624
static void stream_flush(struct
io_stream
*stream)
646
static inline int bunch_done(struct
io_stream
*stream, struct io_spec *spec)
662
static void stream_add_io(struct
io_stream
*stream, struct io_spec *spec
[
all
...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocolTest.java
63
protocol.
io_stream
.write(new byte[] { 1, 2, 3 });
ServerHandshakeImplTest.java
137
server.
io_stream
= new HandshakeIODataStream();
Completed in 60 milliseconds