Searched refs:ReadBytes (Results 26 - 50 of 75) sorted by relevance

123

/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbytebuffer.h69 bool ReadBytes(char* val, size_t len);
H A Dbytebuffer_unittest.cc192 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
202 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
/external/chromium_org/webkit/browser/fileapi/
H A Dfile_system_usage_cache.h81 bool ReadBytes(const base::FilePath& file_path,
H A Dfile_system_usage_cache.cc186 !ReadBytes(usage_file_path, buffer, kUsageFileSize))
193 if (!read_pickle.ReadBytes(&iter, &header, kUsageFileHeaderSize) ||
263 bool FileSystemUsageCache::ReadBytes(const base::FilePath& file_path, function in class:fileapi::FileSystemUsageCache
/external/chromium_org/base/
H A Dpickle.h42 bool ReadBytes(const char** data, int length) WARN_UNUSED_RESULT;
182 // number of bytes to read, and ReadBytes will validate this length. The
185 bool ReadBytes(PickleIterator* iter, const char** data, int length) const { function in class:Pickle
186 return iter->ReadBytes(data, length);
H A Dpickle.cc140 return ReadBytes(data, *length);
143 bool PickleIterator::ReadBytes(const char** data, int length) { function in class:PickleIterator
H A Dpickle_unittest.cc329 // Check that ReadBytes works properly with an iterator initialized to NULL.
330 TEST(PickleTest, ReadBytes) {
337 EXPECT_TRUE(pickle.ReadBytes(&iter, &outdata_char, sizeof(data)));
/external/lzma/CPP/7zip/Archive/7z/
H A D7zIn.h112 void ReadBytes(Byte *data, size_t size);
158 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); } function in class:NArchive::N7z::CInArchive
/external/chromium_org/chrome/test/chromedriver/
H A Dutil.cc139 return ReadBytes(data, sizeof(*data));
143 return ReadBytes(data, sizeof(*data));
153 return ReadBytes(&(*data)[0], length);
156 bool ReadBytes(void* bytes, int size) { function in class:__anon7058::DataInputStream
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.h90 virtual int32_t ReadBytes(int32_t index,
/external/sfntly/cpp/src/test/
H A Dfont_data_test.cc158 int32_t bytes_read = rfd->ReadBytes(index, &(buffer[0]), 0, buffer.size());
173 rfd->ReadBytes(index, &((*b)[0]), index, actual_window_size);
192 int32_t bytesRead = rfd->ReadBytes(index, &(buffer[0]), 0, buffer.size());
205 int32_t bytes_read = rfd->ReadBytes(index, &(b[0]), index, sliding_size);
/external/chromium/webkit/glue/
H A Dglue_serialize.cc81 inline bool ReadBytes(const SerializeObject* obj, const void** data, function in namespace:webkit_glue
84 if (!obj->pickle.ReadBytes(&obj->iter, &tmp, length))
200 if (!ReadBytes(obj, &data, bytes))
/external/chromium/base/
H A Dpickle.h80 bool ReadBytes(void** iter, const char** data, int length) const;
H A Dpickle.cc277 return ReadBytes(iter, data, *length);
280 bool Pickle::ReadBytes(void** iter, const char** data, int length) const { function in class:Pickle
H A Dpickle_unittest.cc312 // Check that ReadBytes works properly with an iterator initialized to NULL.
313 TEST(PickleTest, ReadBytes) {
320 EXPECT_TRUE(pickle.ReadBytes(&iter, &outdata_char, sizeof(data)));
/external/chromium_org/chrome/test/webdriver/
H A Dwebdriver_util.cc126 return ReadBytes(data, sizeof(*data));
130 return ReadBytes(data, sizeof(*data));
140 return ReadBytes(&(*data)[0], length);
143 bool ReadBytes(void* bytes, int size) { function in class:webdriver::__anon7107::DataInputStream
/external/chromium_org/v8/src/
H A Dsnapshot-common.cc93 byte* str = ReadBytes(snapshot_file, &len);
H A Dv8utils.cc163 byte* ReadBytes(const char* filename, int* size, bool verbose) { function in namespace:v8::internal
/external/v8/src/
H A Dv8utils.h76 byte* ReadBytes(const char* filename, int* size, bool verbose = true);
H A Dv8utils.cc154 byte* ReadBytes(const char* filename, int* size, bool verbose) { function in namespace:v8::internal
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dtestutils.cc68 ret &= buf->ReadBytes(payload, sizeof(payload));
101 ret &= buf->ReadBytes(payload, sizeof(payload));
/external/chromium_org/tools/android/fake_dns/
H A Dfake_dns.cc137 reader.ReadBytes(&header, sizeof(header));
/external/sfntly/cpp/src/sfntly/
H A Dfont_factory.cc205 rfd->ReadBytes(0, &(tag[0]), 0, tag.size());
/external/sfntly/cpp/src/sfntly/table/core/
H A Dos2_table.cc171 data_->ReadBytes(Offset::kPanose, &((*value)[0]), 0, 10);
194 data_->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4);
420 InternalReadData()->ReadBytes(Offset::kPanose,
473 InternalReadData()->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4);
/external/chromium_org/v8/test/cctest/
H A Dtest-serialize.cc495 byte* snapshot = ReadBytes(file_name, &snapshot_size);
606 byte* snapshot = ReadBytes(file_name, &snapshot_size);

Completed in 729 milliseconds

123