Home
last modified time | relevance | path

Searched refs:hash_fn (Results 1 – 5 of 5) sorted by relevance

/system/apex/apexd/
Dapexd_verity.cpp71 auto hash_fn = HashTreeBuilder::HashFunction(verity_data.hash_algorithm); in GenerateHashTree() local
72 if (hash_fn == nullptr) { in GenerateHashTree()
77 auto builder = std::make_unique<HashTreeBuilder>(block_size, hash_fn); in GenerateHashTree()
131 auto hash_fn = HashTreeBuilder::HashFunction(verity_data.hash_algorithm); in CalculateRootDigest() local
132 if (hash_fn == nullptr) { in CalculateRootDigest()
136 auto builder = std::make_unique<HashTreeBuilder>(block_size, hash_fn); in CalculateRootDigest()
/system/bt/vendor_libs/test_vendor_lib/types/bluetooth/
Duuid.h134 std::hash<std::string> hash_fn;
135 … return hash_fn(std::string(reinterpret_cast<const char*>(uuid_bytes.data()), uuid_bytes.size()));
/system/bt/types/bluetooth/
Duuid.h134 std::hash<std::string> hash_fn;
135 return hash_fn(std::string(reinterpret_cast<const char*>(uuid_bytes.data()),
/system/bt/gd/hci/
Duuid.h148 std::hash<std::string> hash_fn;
149 … return hash_fn(std::string(reinterpret_cast<const char*>(uuid_bytes.data()), uuid_bytes.size()));
/system/update_engine/payload_generator/
Dblock_mapping.cc36 std::hash<string> hash_fn; in HashValue() local
37 return hash_fn(string(blob.begin(), blob.end())); in HashValue()