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

1 2

  /external/chromium_org/net/quic/
quic_data_reader.cc 46 bool QuicDataReader::ReadUInt64(uint64* result) {
54 if (!ReadUInt64(&low_hash)) {
57 if (!ReadUInt64(&high_hash)) {
quic_data_reader.h 55 bool ReadUInt64(uint64* result);
  /external/chromium_org/ui/base/clipboard/
custom_data_helper.cc 47 if (!pickle.ReadUInt64(&iter, &size))
73 if (!pickle.ReadUInt64(&iter, &size))
96 if (!pickle.ReadUInt64(&iter, &size))
  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.h 39 bool ReadUInt64(const uint32 row, uint64* result) const;
pmp_column_reader.cc 103 bool PmpColumnReader::ReadUInt64(const uint32 row, uint64* result) const {
pmp_column_reader_unittest.cc 62 return reader->ReadUInt64(row, target);
  /external/chromium_org/net/spdy/
spdy_frame_reader.h 54 bool ReadUInt64(uint64* result);
spdy_frame_reader.cc 67 bool SpdyFrameReader::ReadUInt64(uint64* result) {
  /external/chromium_org/content/common/
content_param_traits.cc 23 if (!m->ReadUInt64(iter, &start) || !m->ReadUInt64(iter, &end))
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_drag_data.cc 103 if (!pickle->ReadUInt64(&data_iterator, &index))
  /external/chromium_org/net/quic/crypto/
null_decrypter.cc 78 if (!reader->ReadUInt64(&lo) ||
  /external/chromium_org/third_party/webrtc/base/
bytebuffer.h 51 bool ReadUInt64(uint64* val);
bytebuffer_unittest.cc 159 EXPECT_TRUE(buffer.ReadUInt64(&ru64));
205 EXPECT_TRUE(buffer.ReadUInt64(&ru64));
bytebuffer.cc 112 bool ByteBuffer::ReadUInt64(uint64* val) {
  /external/chromium_org/base/
pickle.h 37 bool ReadUInt64(uint64* result) WARN_UNUSED_RESULT;
171 bool ReadUInt64(PickleIterator* iter,
173 return iter->ReadUInt64(result);
pickle.cc 105 bool PickleIterator::ReadUInt64(uint64* result) {
  /external/chromium_org/extensions/common/
user_script.cc 209 CHECK(pickle.ReadUInt64(iter, &num_globs));
222 CHECK(pickle.ReadUInt64(iter, &num_patterns));
245 CHECK(pickle.ReadUInt64(iter, &num_files));
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 118 UInt64 ReadUInt64();
164 UInt64 ReadUInt64() { return _inByteBack->ReadUInt64(); }
  /external/chromium_org/components/bookmarks/browser/
bookmark_node_data.cc 74 if (!pickle->ReadUInt64(iterator, &meta_field_count))
88 if (!pickle->ReadUInt64(iterator, &children_count))
232 pickle->ReadUInt64(&data_iterator, &element_count)) {
  /external/chromium_org/net/disk_cache/simple/
simple_index_file.cc 180 return it->ReadUInt64(&magic_number_) &&
182 it->ReadUInt64(&number_of_entries_)&&
183 it->ReadUInt64(&cache_size_);
411 if (!pickle_it.ReadUInt64(&hash_key) ||
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer.cc 303 buffer.ReadUInt64(reinterpret_cast<uint64*>(&frame->elapsed_time));
304 buffer.ReadUInt64(reinterpret_cast<uint64*>(&frame->time_stamp));
  /external/chromium_org/components/autofill/core/common/
form_field_data.cc 51 if (!iter->ReadUInt64(&pickle_data))
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum.cc 92 static uint64_t ReadUInt64(Vector<const char> buffer,
113 uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits);
119 uint64_t digits = ReadUInt64(value, pos, length);
  /external/chromium_org/v8/src/
bignum.cc 69 static uint64_t ReadUInt64(Vector<const char> buffer,
90 uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits);
96 uint64_t digits = ReadUInt64(value, pos, length);
  /external/chromium_org/extensions/renderer/
user_script_set.cc 113 CHECK(pickle.ReadUInt64(&iter, &num_scripts));

Completed in 2449 milliseconds

1 2