Home
last modified time | relevance | path

Searched refs:patches_ (Results 1 – 2 of 2) sorted by relevance

/external/bsdiff/
Dsplit_patch_writer.cc16 if (current_patch_ || patches_.empty()) in Init()
22 if (expected_patches != patches_.size()) { in Init()
25 << " but got " << patches_.size() << " instead."; in Init()
29 return patches_[0]->Init( in Init()
70 if (current_patch_ >= patches_.size()) { in AddControlEntry()
74 if (!patches_[current_patch_]->Init(std::min( in AddControlEntry()
89 if (!patches_[current_patch_]->AddControlEntry( in AddControlEntry()
120 if (current_patch_ + 1 != patches_.size()) { in Close()
127 for (; closed_patches_ < patches_.size(); closed_patches_++) { in Close()
128 if (!patches_[closed_patches_]->Close()) in Close()
[all …]
Dsplit_patch_writer.h26 : new_chunk_size_(new_chunk_size), patches_(patches) { in SplitPatchWriter()
61 std::vector<PatchWriterInterface*> patches_; variable