HomeSort by relevance Sort by last modified time
    Searched refs:WriteUInt16 (Results 1 - 12 of 12) sorted by null

  /external/chromium/net/spdy/
spdy_framer.cc 250 frame.WriteUInt16(kControlFlagMask | spdy_version_);
251 frame.WriteUInt16(SYN_STREAM);
255 frame.WriteUInt16(ntohs(priority) << 6); // Priority.
257 frame.WriteUInt16(headers->size()); // Number of headers.
290 frame.WriteUInt16(kControlFlagMask | spdy_version_);
291 frame.WriteUInt16(SYN_REPLY);
294 frame.WriteUInt16(0); // Unused
296 frame.WriteUInt16(headers->size()); // Number of headers.
331 frame.WriteUInt16(kControlFlagMask | spdy_version_);
332 frame.WriteUInt16(RST_STREAM)
    [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 242 frame.WriteUInt16(kControlFlagMask | 1);
243 frame.WriteUInt16(SYN_STREAM);
247 frame.WriteUInt16(0); // Priority.
249 frame.WriteUInt16(2); // Number of headers.
270 frame1.WriteUInt16(kControlFlagMask | 1);
271 frame1.WriteUInt16(SYN_STREAM);
274 frame1.WriteUInt16(0); // Priority.
276 frame1.WriteUInt16(1); // Wrong number of headers (underflow)
285 frame2.WriteUInt16(kControlFlagMask | 1);
286 frame2.WriteUInt16(SYN_STREAM)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h 58 void WriteUInt16(uint16 val);
bytebuffer.cc 148 void ByteBuffer::WriteUInt16(uint16 val) {
socketadapters.cc 698 request.WriteUInt16(dest_.port()); // Destination Port
835 response.WriteUInt16(addr.port());
  /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/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/base/
pickle.h 102 bool WriteUInt16(uint16 value) {
pickle_unittest.cc 74 EXPECT_TRUE(pickle.WriteUInt16(testuint16));
  /external/chromium/net/http/
http_response_info.cc 238 pickle->WriteUInt16(socket_address.port());

Completed in 57 milliseconds