HomeSort by relevance Sort by last modified time
    Searched refs:patches_ (Results 1 - 7 of 7) sorted by null

  /external/bsdiff/
split_patch_writer.cc 16 if (current_patch_ || patches_.empty())
22 if (expected_patches != patches_.size()) {
25 << " but got " << patches_.size() << " instead.";
29 return patches_[0]->Init(
70 if (current_patch_ >= patches_.size()) {
74 if (!patches_[current_patch_]->Init(std::min(
89 if (!patches_[current_patch_]->AddControlEntry(
120 if (current_patch_ + 1 != patches_.size()) {
127 for (; closed_patches_ < patches_.size(); closed_patches_++) {
128 if (!patches_[closed_patches_]->Close()
    [all...]
split_patch_writer.h 26 : new_chunk_size_(new_chunk_size), patches_(patches) {
61 std::vector<PatchWriterInterface*> patches_; member in class:bsdiff::SplitPatchWriter
68 // The current patch number in the |patches_| array we are writing to.
  /external/perfetto/include/perfetto/tracing/core/
commit_data_request.h 149 int patches_size() const { return static_cast<int>(patches_.size()); }
150 const std::vector<Patch>& patches() const { return patches_; }
151 std::vector<Patch>* mutable_patches() { return &patches_; }
152 void clear_patches() { patches_.clear(); }
154 patches_.emplace_back();
155 return &patches_.back();
165 std::vector<Patch> patches_; member in class:perfetto::CommitDataRequest::ChunkToPatch
  /art/compiler/
compiled_method-inl.h 50 return GetArray(patches_);
compiled_method.cc 110 patches_(storage->DeduplicateLinkerPatches(patches)) {
140 storage->ReleaseLinkerPatches(patches_);
compiled_method.h 162 const LengthPrefixedArray<linker::LinkerPatch>* const patches_; member in class:art::final
  /external/perfetto/src/tracing/core/
commit_data_request.cc 161 (patches_ == other.patches_) &&
179 patches_.clear();
181 patches_.emplace_back();
182 patches_.back().FromProto(field);
209 for (const auto& it : patches_) {

Completed in 330 milliseconds