Searched defs:ExtentWriter (Results 1 - 1 of 1) sorted by relevance

/system/update_engine/payload_consumer/
H A Dextent_writer.h29 // ExtentWriter is an abstract class which synchronously writes to a given
34 class ExtentWriter { class in namespace:chromeos_update_engine
36 ExtentWriter() = default;
37 virtual ~ExtentWriter() {
38 LOG_IF(ERROR, !end_called_) << "End() not called on ExtentWriter.";
60 // DirectExtentWriter is probably the simplest ExtentWriter implementation.
63 class DirectExtentWriter : public ExtentWriter {
90 // Takes an underlying ExtentWriter to which all operations are delegated.
95 class ZeroPadExtentWriter : public ExtentWriter {
98 std::unique_ptr<ExtentWriter> underlying_extent_write
[all...]

Completed in 42 milliseconds