HomeSort by relevance Sort by last modified time
    Searched refs:ReadUInt16 (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/net/quic/
quic_data_reader.cc 20 bool QuicDataReader::ReadUInt16(uint16* result) {
35 if (!ReadUInt16(&hi)) {
67 if (!ReadUInt16(&value)) {
99 if (!ReadUInt16(&result_len)) {
quic_data_reader.h 40 bool ReadUInt16(uint16* result);
  /external/chromium_org/net/spdy/
spdy_frame_reader.h 44 bool ReadUInt16(uint16* result);
spdy_frame_reader_test.cc 15 TEST(SpdyFrameReaderTest, ReadUInt16) {
26 EXPECT_TRUE(frame_reader.ReadUInt16(&uint16_val));
30 EXPECT_TRUE(frame_reader.ReadUInt16(&uint16_val));
115 EXPECT_FALSE(frame_reader.ReadUInt16(&uint16_val));
133 EXPECT_FALSE(frame_reader.ReadUInt16(&uint16_val));
153 EXPECT_FALSE(frame_reader.ReadUInt16(&uint16_val));
172 EXPECT_FALSE(frame_reader.ReadUInt16(&uint16_val));
192 EXPECT_FALSE(frame_reader.ReadUInt16(&uint16_val));
211 EXPECT_FALSE(frame_reader.ReadUInt16(&uint16_val));
spdy_frame_reader.cc 35 bool SpdyFrameReader::ReadUInt16(uint16* result) {
99 if (!ReadUInt16(&result_len)) {
  /external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctputils.cc 78 if (!buffer.ReadUInt16(&priority)) {
88 if (!buffer.ReadUInt16(&label_length)) {
93 if (!buffer.ReadUInt16(&protocol_length)) {
sctputils_unittest.cc 60 ASSERT_TRUE(buffer.ReadUInt16(&priority));
69 ASSERT_TRUE(buffer.ReadUInt16(&label_length));
70 ASSERT_TRUE(buffer.ReadUInt16(&protocol_length));
  /external/chromium/net/spdy/
spdy_frame_builder.cc 35 bool SpdyFrameBuilder::ReadUInt16(void** iter, uint16* result) const {
67 if (!ReadUInt16(iter, &len))
100 if (!ReadUInt16(iter, length))
spdy_frame_builder.h 56 bool ReadUInt16(void** iter, uint16* result) const;
  /external/chromium_org/chrome/test/chromedriver/
util.cc 140 bool ReadUInt16(uint16* data) {
192 if (!stream.ReadUInt16(&zip->version_needed)) {
196 if (!stream.ReadUInt16(&zip->bit_flag)) {
200 if (!stream.ReadUInt16(&zip->compression_method)) {
204 if (!stream.ReadUInt16(&zip->mod_time)) {
208 if (!stream.ReadUInt16(&zip->mod_date)) {
226 if (!stream.ReadUInt16(&name_length)) {
231 if (!stream.ReadUInt16(&field_length)) {
  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h 50 bool ReadUInt16(uint16* val);
bytebuffer.cc 74 bool ByteBuffer::ReadUInt16(uint16* val) {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 145 if (!buf->ReadUInt16(&type_))
154 if (!buf->ReadUInt16(&length_))
171 if (!buf->ReadUInt16(&attr_type))
173 if (!buf->ReadUInt16(&attr_length))
332 if (!buf->ReadUInt16(&port_))
485 if (!buf->ReadUInt16(&attr))
  /external/chromium_org/content/common/
ssl_status_serialization.cc 69 pickle.ReadUInt16(&iter, &status);
  /external/chromium_org/third_party/libjingle/source/talk/base/
bytebuffer.h 65 bool ReadUInt16(uint16* val);
bytebuffer_unittest.cc 151 EXPECT_TRUE(buffer.ReadUInt16(&ru16));
216 EXPECT_TRUE(buffer.ReadUInt16(&ru16));
  /external/chromium_org/base/
pickle.h 33 bool ReadUInt16(uint16* result) WARN_UNUSED_RESULT;
153 bool ReadUInt16(PickleIterator* iter,
155 return iter->ReadUInt16(result);
  /external/chromium_org/net/quic/crypto/
crypto_framer.cc 215 reader.ReadUInt16(&num_entries_);
220 reader.ReadUInt16(&padding);
  /external/chromium/base/
pickle.h 72 bool ReadUInt16(void** iter, uint16* result) const;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 115 buf.ReadUInt16(&dump_packet_len);
116 buf.ReadUInt16(&data_len); // data.size() for RTP, 0 for RTCP.
  /external/chromium_org/net/http/
http_response_info.cc 222 if (!sct.get() || !pickle.ReadUInt16(&iter, &status))
241 if (!pickle.ReadUInt16(&iter, &socket_address_port))
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc 137 buf.ReadUInt16(&dump_packet_len);
143 buf.ReadUInt16(&data_len);
testutils.cc 65 ret &= buf->ReadUInt16(&sequence_number);
100 ret &= buf->ReadUInt16(&length);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 313 if (!buf->ReadUInt16(&type_))
322 if (!buf->ReadUInt16(&length_))
351 if (!buf->ReadUInt16(&attr_type))
353 if (!buf->ReadUInt16(&attr_length))
522 if (!buf->ReadUInt16(&port))
860 if (!buf->ReadUInt16(&attr))
  /external/chromium/net/http/
http_response_info.cc 171 if (!pickle.ReadUInt16(&iter, &socket_address_port))

Completed in 345 milliseconds

1 2