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

1 2

  /external/chromium_org/net/quic/
quic_data_reader.cc 17 bool QuicDataReader::ReadUInt16(uint16* result) {
32 if (!ReadUInt16(&hi)) {
65 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/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 138 bool ReadUInt16(uint16* data) {
188 if (!stream.ReadUInt16(&zip->version_needed)) {
192 if (!stream.ReadUInt16(&zip->bit_flag)) {
196 if (!stream.ReadUInt16(&zip->compression_method)) {
200 if (!stream.ReadUInt16(&zip->mod_time)) {
204 if (!stream.ReadUInt16(&zip->mod_date)) {
222 if (!stream.ReadUInt16(&name_length)) {
227 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) {
socketadapters.cc 612 !response.ReadUInt16(&port))
620 !response.ReadUInt16(&port))
626 !response.ReadUInt16(&port))
809 !request->ReadUInt16(&port)) {
  /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/chrome/test/webdriver/
webdriver_util.cc 125 bool ReadUInt16(uint16* data) {
175 if (!stream.ReadUInt16(&zip->version_needed)) {
179 if (!stream.ReadUInt16(&zip->bit_flag)) {
183 if (!stream.ReadUInt16(&zip->compression_method)) {
187 if (!stream.ReadUInt16(&zip->mod_time)) {
191 if (!stream.ReadUInt16(&zip->mod_date)) {
209 if (!stream.ReadUInt16(&name_length)) {
214 if (!stream.ReadUInt16(&field_length)) {
  /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));
bytebuffer.cc 87 bool ByteBuffer::ReadUInt16(uint16* val) {
  /external/chromium_org/base/
pickle.h 33 bool ReadUInt16(uint16* result) WARN_UNUSED_RESULT;
150 bool ReadUInt16(PickleIterator* iter, uint16* result) const {
151 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/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))
  /external/chromium_org/net/http/
http_response_info.cc 221 if (!pickle.ReadUInt16(&iter, &socket_address_port))

Completed in 2666 milliseconds

1 2