Searched refs:out_hash (Results 1 – 3 of 3) sorted by relevance
/system/update_engine/common/ |
D | hash_calculator.cc | 85 brillo::Blob* out_hash) { in RawHashOfBytes() argument 89 *out_hash = calc.raw_hash(); in RawHashOfBytes() 94 brillo::Blob* out_hash) { in RawHashOfData() argument 95 return RawHashOfBytes(data.data(), data.size(), out_hash); in RawHashOfData() 98 bool HashCalculator::RawHashOfFile(const string& name, brillo::Blob* out_hash) { in RawHashOfFile() argument 100 return RawHashOfFile(name, file_size, out_hash) == file_size; in RawHashOfFile() 105 brillo::Blob* out_hash) { in RawHashOfFile() argument 114 *out_hash = calc.raw_hash(); in RawHashOfFile()
|
D | hash_calculator.h | 73 brillo::Blob* out_hash); 74 static bool RawHashOfData(const brillo::Blob& data, brillo::Blob* out_hash); 77 brillo::Blob* out_hash); 78 static bool RawHashOfFile(const std::string& name, brillo::Blob* out_hash);
|
/system/update_engine/payload_consumer/ |
D | partition_update_generator_android_unittest.cc | 91 brillo::Blob out_hash; in CheckPartitionUpdate() local 93 content.data(), content.size(), &out_hash)); in CheckPartitionUpdate() 94 ASSERT_EQ(std::string(out_hash.begin(), out_hash.end()), in CheckPartitionUpdate() 96 ASSERT_EQ(std::string(out_hash.begin(), out_hash.end()), in CheckPartitionUpdate()
|