Home | History | Annotate | Download | only in safe_browsing

Lines Matching refs:full_hash

123     : full_hash(NULL),
137 DCHECK(!check.full_hash.get());
144 } else if (check.full_hash.get()) {
146 safe_browsing_util::SBFullHashToString(*check.full_hash),
226 bool SafeBrowsingService::CheckDownloadHash(const std::string& full_hash,
229 DCHECK(!full_hash.empty());
230 if (!enabled_ || !enable_download_protection_ || full_hash.empty())
236 check->full_hash.reset(new SBFullHash);
237 safe_browsing_util::StringToSBFullHash(full_hash, check->full_hash.get());
976 index = safe_browsing_util::GetHashIndex(*(check->full_hash), full_hashes);
1096 if (!database_->ContainsDownloadHashPrefix(check->full_hash->prefix)) {
1108 check->prefix_hits.push_back(check->full_hash->prefix);