Home
last modified time | relevance | path

Searched refs:ICowWriter (Results 1 – 10 of 10) sorted by relevance

/system/update_engine/payload_consumer/
Dsnapshot_extent_writer.h32 explicit SnapshotExtentWriter(android::snapshot::ICowWriter* cow_writer) in SnapshotExtentWriter()
39 android::snapshot::ICowWriter* cow_writer_;
Dxor_extent_writer.h37 android::snapshot::ICowWriter* cow_writer, in XORExtentWriter()
62 android::snapshot::ICowWriter* cow_writer_;
Dsnapshot_extent_writer_unittest.cc33 class FakeCowWriter : public android::snapshot::ICowWriter {
43 using ICowWriter::ICowWriter;
Dvabc_partition_writer.h70 android::snapshot::ICowWriter* cow_writer);
Dvabc_partition_writer.cc66 using android::snapshot::ICowWriter;
206 ICowWriter* cow_writer) { in WriteMergeSequence()
/system/core/fs_mgr/libsnapshot/include/libsnapshot/
Dcow_writer.h62 class ICowWriter {
64 explicit ICowWriter(const CowOptions& options) : options_(options) {} in ICowWriter() function
66 virtual ~ICowWriter() {} in ~ICowWriter()
152 class CowWriter : public ICowWriter {
Dsnapshot_writer.h30 class ISnapshotWriter : public ICowWriter {
/system/core/fs_mgr/libsnapshot/libsnapshot_cow/
Dcow_writer.cpp63 bool ICowWriter::AddCopy(uint64_t new_block, uint64_t old_block, uint64_t num_blocks) { in AddCopy()
75 bool ICowWriter::AddRawBlocks(uint64_t new_block_start, const void* data, size_t size) { in AddRawBlocks()
90 bool ICowWriter::AddXorBlocks(uint32_t new_block_start, const void* data, size_t size, in AddXorBlocks()
110 bool ICowWriter::AddZeroBlocks(uint64_t new_block_start, uint64_t num_blocks) { in AddZeroBlocks()
118 bool ICowWriter::AddLabel(uint64_t label) { in AddLabel()
122 bool ICowWriter::AddSequenceData(size_t num_ops, const uint32_t* data) { in AddSequenceData()
126 bool ICowWriter::ValidateNewBlock(uint64_t new_block) { in ValidateNewBlock()
135 CowWriter::CowWriter(const CowOptions& options) : ICowWriter(options), fd_(-1) { in CowWriter()
/system/core/fs_mgr/libsnapshot/
Dsnapshot_writer.cpp31 ISnapshotWriter::ISnapshotWriter(const CowOptions& options) : ICowWriter(options) {} in ISnapshotWriter()
Dsnapshot_test.cpp1176 bool WriteRandomSnapshotData(ICowWriter* writer, std::string* hash) { in WriteRandomSnapshotData()