HomeSort by relevance Sort by last modified time
    Searched refs:WriteUInt16 (Results 1 - 25 of 27) 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/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())) {
quic_framer.cc     [all...]
  /external/chromium_org/net/spdy/
spdy_frame_builder.cc 71 success &= WriteUInt16(kControlFlagMask |
73 success &= WriteUInt16(
124 success &= WriteUInt16(capacity_ - offset_ - framer.GetPrefixLength(type));
139 if (!WriteUInt16(static_cast<int>(value.size())))
192 success = WriteUInt16(length);
spdy_frame_builder.h 94 bool WriteUInt16(uint16 value) {
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
sctputils.cc 179 buffer.WriteUInt16(priority);
181 buffer.WriteUInt16(static_cast<uint16>(label.length()));
182 buffer.WriteUInt16(static_cast<uint16>(config.protocol.length()));
  /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 54 buf->WriteUInt16(sequence_number);
91 buf->WriteUInt16(length);
  /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);
bytebuffer.cc 167 void ByteBuffer::WriteUInt16(uint16 val) {
socketadapters.cc 698 request.WriteUInt16(dest_.port()); // Destination Port
835 response.WriteUInt16(addr.port());
  /external/chromium_org/third_party/webrtc/base/
bytebuffer.h 61 void WriteUInt16(uint16 val);
bytebuffer_unittest.cc 64 buffer.WriteUInt16(1);
132 buffer.WriteUInt16(wu16);
193 buffer.WriteUInt16(wu16);
bytebuffer.cc 150 void ByteBuffer::WriteUInt16(uint16 val) {
socketadapters.cc 681 request.WriteUInt16(dest_.port()); // Destination Port
818 response.WriteUInt16(addr.port());
  /external/chromium_org/net/quic/crypto/
crypto_framer.cc 116 if (!writer.WriteUInt16(num_entries)) {
120 if (!writer.WriteUInt16(0)) {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 377 buf->WriteUInt16(type_);
378 buf->WriteUInt16(length_);
384 buf->WriteUInt16((*attrs_)[i]->type());
385 buf->WriteUInt16(static_cast<uint16>((*attrs_)[i]->length()));
559 buf->WriteUInt16(address_.port());
642 buf->WriteUInt16(port() ^ (kStunMagicCookie >> 16));
876 buf->WriteUInt16((*attr_types_)[i]);
turnport.cc     [all...]
turnserver.cc 848 buf.WriteUInt16(channel->id());
849 buf.WriteUInt16(static_cast<uint16>(size));
    [all...]
  /external/chromium_org/net/http/
http_response_info.cc 346 pickle->WriteUInt16(it->status);
355 pickle->WriteUInt16(socket_address.port());
  /external/chromium_org/base/
pickle.h 234 bool WriteUInt16(uint16 value) {
pickle_unittest.cc 78 EXPECT_TRUE(pickle.WriteUInt16(testuint16));

Completed in 484 milliseconds

1 2