Searched refs:EndsleyPatchWriter (Results 1 – 4 of 4) sorted by relevance
/external/bsdiff/ |
D | endsley_patch_writer.cc | 34 bool EndsleyPatchWriter::Init(size_t new_size) { in Init() 68 bool EndsleyPatchWriter::WriteDiffStream(const uint8_t* data, size_t size) { in WriteDiffStream() 83 bool EndsleyPatchWriter::WriteExtraStream(const uint8_t* data, size_t size) { in WriteExtraStream() 99 bool EndsleyPatchWriter::AddControlEntry(const ControlEntry& entry) { in AddControlEntry() 126 bool EndsleyPatchWriter::Close() { in Close() 149 void EndsleyPatchWriter::EmitControlEntry(const ControlEntry& entry) { in EmitControlEntry() 158 void EndsleyPatchWriter::EmitBuffer(const uint8_t* data, size_t size) { in EmitBuffer() 166 void EndsleyPatchWriter::Flush() { in Flush()
|
D | patch_writer_factory.cc | 39 new EndsleyPatchWriter(patch, type, brotli_quality)); in CreateEndsleyPatchWriter() 45 new EndsleyPatchWriter(patch, CompressorType::kNoCompression, 0)); in CreateEndsleyPatchWriter()
|
D | endsley_patch_writer.h | 37 class EndsleyPatchWriter : public PatchWriterInterface { 43 EndsleyPatchWriter(std::vector<uint8_t>* patch, in EndsleyPatchWriter() function
|
D | endsley_patch_writer_unittest.cc | 34 EndsleyPatchWriter patch_writer_{&data_, CompressorType::kNoCompression, 0}; 55 EndsleyPatchWriter compressed_writer(&data_, CompressorType::kBZ2, 9); in TEST_F() 77 EndsleyPatchWriter compressed_writer(&data_, CompressorType::kBrotli, 9); in TEST_F()
|