Home
last modified time | relevance | path

Searched refs:GetBlob (Results 1 – 8 of 8) sorted by relevance

/external/libchrome/mojo/public/cpp/base/
Dvalues_mojom_traits.h111 reinterpret_cast<const uint8_t*>(value.GetBlob().data()),
112 value.GetBlob().size());
/external/libchrome/base/
Dvalues_unittest.cc109 value.GetBlob()); in TEST()
230 EXPECT_EQ(value.GetBlob(), copied_value.GetBlob()); in TEST()
236 EXPECT_EQ(value.GetBlob(), blank.GetBlob()); in TEST()
332 EXPECT_EQ(buffer, moved_value.GetBlob()); in TEST()
338 EXPECT_EQ(buffer, blank.GetBlob()); in TEST()
788 ASSERT_TRUE(binary->GetBlob().empty()); in TEST()
795 ASSERT_TRUE(binary->GetBlob().data()); in TEST()
796 ASSERT_EQ(original_buffer, binary->GetBlob().data()); in TEST()
797 ASSERT_EQ(15U, binary->GetBlob().size()); in TEST()
803 ASSERT_TRUE(binary->GetBlob().data()); in TEST()
[all …]
Dvalues.h167 const BlobStorage& GetBlob() const;
Dvalues.cc249 const Value::BlobStorage& Value::GetBlob() const { in GetBlob() function in base::Value
/external/v8/src/snapshot/
Dnatives-external.cc95 int id_length = bytes->GetBlob(&id); in ReadNameAndContentPair()
96 int source_length = bytes->GetBlob(&source); in ReadNameAndContentPair()
Dsnapshot-source-sink.cc36 int SnapshotByteSource::GetBlob(const byte** data) { in GetBlob() function in v8::internal::SnapshotByteSource
Dsnapshot-source-sink.h64 int GetBlob(const byte** data);
/external/libchrome/ipc/
Dipc_message_utils.cc125 m->WriteData(value->GetBlob().data(), in WriteValue()
126 base::checked_cast<int>(value->GetBlob().size())); in WriteValue()