OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExtentWriter
(Results
1 - 6
of
6
) sorted by null
/system/update_engine/payload_consumer/
bzip_extent_writer.h
29
// BzipExtentWriter is a concrete
ExtentWriter
subclass that bzip-decompresses
31
//
ExtentWriter
.
35
class BzipExtentWriter : public
ExtentWriter
{
37
explicit BzipExtentWriter(std::unique_ptr<
ExtentWriter
> next)
50
std::unique_ptr<
ExtentWriter
> next_; // The underlying
ExtentWriter
.
xz_extent_writer.h
29
// XzExtentWriter is a concrete
ExtentWriter
subclass that xz-decompresses
32
// to an underlying
ExtentWriter
.
36
class XzExtentWriter : public
ExtentWriter
{
38
explicit XzExtentWriter(std::unique_ptr<
ExtentWriter
> underlying_writer)
49
// The underlying
ExtentWriter
.
50
std::unique_ptr<
ExtentWriter
> underlying_writer_;
extent_writer.h
29
//
ExtentWriter
is an abstract class which synchronously writes to a given
34
class
ExtentWriter
{
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_writer
[
all
...]
fake_extent_writer.h
29
// FakeExtentWriter is a concrete
ExtentWriter
subclass that keeps track of all
31
class FakeExtentWriter : public
ExtentWriter
{
36
//
ExtentWriter
overrides.
delta_performer.cc
[
all
...]
/system/update_engine/payload_generator/
zip_unittest.cc
41
//
ExtentWriter
class that writes to memory, used to test the decompression
43
class MemoryExtentWriter : public
ExtentWriter
{
45
// Creates the
ExtentWriter
that will write all the bytes to the passed |data|
72
std::unique_ptr<
ExtentWriter
> writer(
Completed in 2478 milliseconds