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

1 2

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_zip.cpp 74 inline uint32_t ReadUInt16(uint8_t* mem_bytes, int offset) {
163 uint32_t num_entries = ReadUInt16(
179 ReadUInt16(mem_bytes, off + kOffsetFilenameLengthInCentralDirectory);
181 ReadUInt16(mem_bytes, off + kOffsetExtraFieldLengthInCentralDirectory);
183 ReadUInt16(mem_bytes, off + kOffsetCommentLengthInCentralDirectory);
205 ReadUInt16(
209 ReadUInt16(
  /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_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.h 44 bool ReadUInt16(uint16* result);
spdy_frame_reader.cc 35 bool SpdyFrameReader::ReadUInt16(uint16* result) {
117 if (!ReadUInt16(&result_len)) {
spdy_framer.cc 687 bool successful_read = reader->ReadUInt16(&version);
709 successful_read = reader->ReadUInt16(&control_frame_type_field);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
sctputils.cc 77 if (!buffer.ReadUInt16(&priority)) {
87 if (!buffer.ReadUInt16(&label_length)) {
92 if (!buffer.ReadUInt16(&protocol_length)) {
sctputils_unittest.cc 59 ASSERT_TRUE(buffer.ReadUInt16(&priority));
68 ASSERT_TRUE(buffer.ReadUInt16(&label_length));
69 ASSERT_TRUE(buffer.ReadUInt16(&protocol_length));
  /external/chromium_org/chrome/test/chromedriver/
util.cc 145 bool ReadUInt16(uint16* data) {
197 if (!stream.ReadUInt16(&zip->version_needed)) {
201 if (!stream.ReadUInt16(&zip->bit_flag)) {
205 if (!stream.ReadUInt16(&zip->compression_method)) {
209 if (!stream.ReadUInt16(&zip->mod_time)) {
213 if (!stream.ReadUInt16(&zip->mod_date)) {
231 if (!stream.ReadUInt16(&name_length)) {
236 if (!stream.ReadUInt16(&field_length)) {
  /external/chromium_org/content/common/
ssl_status_serialization.cc 68 !pickle.ReadUInt16(&iter, &status))
  /external/chromium_org/third_party/webrtc/base/
bytebuffer.h 48 bool ReadUInt16(uint16* val);
bytebuffer_unittest.cc 134 EXPECT_TRUE(buffer.ReadUInt16(&ru16));
199 EXPECT_TRUE(buffer.ReadUInt16(&ru16));
bytebuffer.cc 71 bool ByteBuffer::ReadUInt16(uint16* val) {
socketadapters.cc 595 !response.ReadUInt16(&port))
603 !response.ReadUInt16(&port))
609 !response.ReadUInt16(&port))
792 !request->ReadUInt16(&port)) {
  /external/chromium_org/base/
pickle.h 34 bool ReadUInt16(uint16* result) WARN_UNUSED_RESULT;
159 bool ReadUInt16(PickleIterator* iter,
161 return iter->ReadUInt16(result);
pickle.cc 93 bool PickleIterator::ReadUInt16(uint16* result) {
pickle_unittest.cc 52 EXPECT_TRUE(pickle.ReadUInt16(&iter, &outuint16));
  /external/chromium_org/net/quic/crypto/
crypto_framer.cc 213 reader.ReadUInt16(&num_entries_);
218 reader.ReadUInt16(&padding);
  /external/chromium_org/net/http/
http_response_info.cc 224 if (!sct.get() || !pickle.ReadUInt16(&iter, &status))
243 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 67 ret &= buf->ReadUInt16(&sequence_number);
102 ret &= buf->ReadUInt16(&length);
videoengine_unittest.h 687 if (!buf.ReadUInt16(&u16)) return false;
706 if (!buf.ReadUInt16(&u16)) return false;
709 if (!buf.ReadUInt16(&u16)) return false;
742 if (!buf.ReadUInt16(&length)) return false;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 315 if (!buf->ReadUInt16(&type_))
324 if (!buf->ReadUInt16(&length_))
353 if (!buf->ReadUInt16(&attr_type))
355 if (!buf->ReadUInt16(&attr_length))
524 if (!buf->ReadUInt16(&port))
862 if (!buf->ReadUInt16(&attr))
  /external/chromium_org/content/browser/renderer_host/
sandbox_ipc_linux.cc 299 !pickle.ReadUInt16(&iter, &pixel_size)) {

Completed in 4469 milliseconds

1 2