OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WriteUInt16
(Results
1 - 25
of
35
) sorted by null
1
2
/external/chromium_org/chrome/test/chromedriver/
util.cc
107
void
WriteUInt16
(uint16 data) {
294
stream.
WriteUInt16
(version_needed);
295
stream.
WriteUInt16
(bit_flag);
296
stream.
WriteUInt16
(compression_method);
297
stream.
WriteUInt16
(mod_time);
298
stream.
WriteUInt16
(mod_date);
302
stream.
WriteUInt16
(name.length());
303
stream.
WriteUInt16
(fields.length());
311
stream.
WriteUInt16
(0x14); // Version made by. Unused at version 0.
312
stream.
WriteUInt16
(version_needed)
[
all
...]
/external/chromium_org/net/spdy/
spdy_frame_builder.cc
69
success &=
WriteUInt16
(kControlFlagMask | framer.protocol_version());
70
success &=
WriteUInt16
(type);
106
success &=
WriteUInt16
(capacity_);
120
if (!
WriteUInt16
(static_cast<int>(value.size())))
170
success =
WriteUInt16
(length);
spdy_frame_builder.h
87
bool
WriteUInt16
(uint16 value) {
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctputils.cc
166
buffer.
WriteUInt16
(priority);
168
buffer.
WriteUInt16
(static_cast<uint16>(label.length()));
169
buffer.
WriteUInt16
(static_cast<uint16>(config.protocol.length()));
/external/chromium_org/net/quic/
quic_data_writer.h
42
bool
WriteUInt16
(uint16 value);
quic_data_writer.cc
41
bool QuicDataWriter::
WriteUInt16
(uint16 value) {
52
return WriteUInt32(lo) &&
WriteUInt16
(hi);
102
if (!
WriteUInt16
(val.size())) {
/external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h
58
void
WriteUInt16
(uint16 val);
bytebuffer.cc
148
void ByteBuffer::
WriteUInt16
(uint16 val) {
/external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc
54
buf->
WriteUInt16
(port);
55
buf->
WriteUInt16
(padding);
274
buffer.
WriteUInt16
(sequence);
310
buf.
WriteUInt16
(static_cast<uint16>(RtpDumpPacket::kHeaderLength + data_len));
311
buf.
WriteUInt16
(static_cast<uint16>(rtcp ? 0 : data_len));
/external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc
60
buf->
WriteUInt16
(port);
61
buf->
WriteUInt16
(padding);
311
buffer.
WriteUInt16
(sequence);
374
buf.
WriteUInt16
(static_cast<uint16>(
376
buf.
WriteUInt16
(static_cast<uint16>(rtcp ? 0 : data_len));
testutils.cc
53
buf->
WriteUInt16
(sequence_number);
90
buf->
WriteUInt16
(length);
/external/chromium/net/spdy/
spdy_framer.cc
125
frame->
WriteUInt16
(headers->size()); // Number of headers.
547
frame.
WriteUInt16
(kControlFlagMask | spdy_version_);
548
frame.
WriteUInt16
(SYN_STREAM);
552
frame.
WriteUInt16
(ntohs(priority) << 6); // Priority.
554
frame.
WriteUInt16
(headers->size()); // Number of headers.
588
frame.
WriteUInt16
(kControlFlagMask | spdy_version_);
589
frame.
WriteUInt16
(SYN_REPLY);
592
frame.
WriteUInt16
(0); // Unused
594
frame.
WriteUInt16
(headers->size()); // Number of headers.
630
frame.
WriteUInt16
(kControlFlagMask | spdy_version_)
[
all
...]
spdy_frame_builder.cc
110
if (!
WriteUInt16
(static_cast<int>(value.size())))
134
if (!
WriteUInt16
(length))
spdy_frame_builder.h
66
bool
WriteUInt16
(uint16 value) {
spdy_framer_test.cc
253
frame.
WriteUInt16
(kControlFlagMask | 1);
254
frame.
WriteUInt16
(SYN_STREAM);
258
frame.
WriteUInt16
(0); // Priority.
260
frame.
WriteUInt16
(2); // Number of headers.
281
frame1.
WriteUInt16
(kControlFlagMask | 1);
282
frame1.
WriteUInt16
(SYN_STREAM);
285
frame1.
WriteUInt16
(0); // Priority.
287
frame1.
WriteUInt16
(1); // Wrong number of headers (underflow)
296
frame2.
WriteUInt16
(kControlFlagMask | 1);
297
frame2.
WriteUInt16
(SYN_STREAM)
[
all
...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc
194
buf->
WriteUInt16
(type_);
195
buf->
WriteUInt16
(length_);
199
buf->
WriteUInt16
((*attrs_)[i]->type());
200
buf->
WriteUInt16
((*attrs_)[i]->length());
342
buf->
WriteUInt16
(port_);
494
buf->
WriteUInt16
((*attr_types_)[i]);
/external/chromium_org/content/common/
ssl_status_serialization.cc
29
pickle.
WriteUInt16
(iter->status);
/external/chromium_org/third_party/libjingle/source/talk/base/
bytebuffer.h
78
void
WriteUInt16
(uint16 val);
bytebuffer_unittest.cc
81
buffer.
WriteUInt16
(1);
149
buffer.
WriteUInt16
(wu16);
210
buffer.
WriteUInt16
(wu16);
/external/chromium_org/net/quic/crypto/
crypto_framer.cc
118
if (!writer.
WriteUInt16
(num_entries)) {
122
if (!writer.
WriteUInt16
(0)) {
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc
376
buf->
WriteUInt16
(type_);
377
buf->
WriteUInt16
(length_);
383
buf->
WriteUInt16
((*attrs_)[i]->type());
384
buf->
WriteUInt16
(static_cast<uint16>((*attrs_)[i]->length()));
558
buf->
WriteUInt16
(address_.port());
641
buf->
WriteUInt16
(port() ^ (kStunMagicCookie >> 16));
875
buf->
WriteUInt16
((*attr_types_)[i]);
/external/chromium/base/
pickle.h
102
bool
WriteUInt16
(uint16 value) {
/external/chromium_org/net/http/
http_response_info.cc
344
pickle->
WriteUInt16
(it->status_);
353
pickle->
WriteUInt16
(socket_address.port());
/external/chromium/net/http/
http_response_info.cc
238
pickle->
WriteUInt16
(socket_address.port());
/external/chromium_org/base/
pickle.h
229
bool
WriteUInt16
(uint16 value) {
Completed in 2233 milliseconds
1
2