Home
last modified time | relevance | path

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

/system/update_engine/payload_consumer/
Dfilesystem_verifier_action.cc176 hasher_.reset(new HashCalculator()); in StartPartitionHashing()
211 if (!hasher_->Update(buffer_.data(), bytes_read)) { in OnReadDoneCallback()
242 if (!hasher_->Finalize()) { in FinishPartitionHashing()
248 LOG(INFO) << "Hash of " << partition.name << ": " << hasher_->hash(); in FinishPartitionHashing()
252 partition.source_hash = hasher_->raw_hash(); in FinishPartitionHashing()
256 if (partition.target_hash != hasher_->raw_hash()) { in FinishPartitionHashing()
273 if (partition.source_hash != hasher_->raw_hash()) { in FinishPartitionHashing()
282 hasher_.reset(); in FinishPartitionHashing()
Dfilesystem_verifier_action.h118 std::unique_ptr<HashCalculator> hasher_; variable