/external/chromium/chrome/browser/safe_browsing/ |
H A D | safe_browsing_util_unittest.cc | 289 std::vector<SBFullHashResult> full_hashes; local 290 full_hashes.push_back(full_hash); 292 EXPECT_EQ(safe_browsing_util::GetUrlHashIndex(url, full_hashes), 0); 295 EXPECT_EQ(safe_browsing_util::GetUrlHashIndex(url, full_hashes), -1);
|
H A D | protocol_parser_unittest.cc | 474 std::vector<SBFullHashResult> full_hashes; local 480 &full_hashes)); 483 EXPECT_EQ(full_hashes.size(), 3U); 484 EXPECT_EQ(memcmp(&full_hashes[0].hash, 487 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar"); 488 EXPECT_EQ(memcmp(&full_hashes[1].hash, 491 EXPECT_EQ(full_hashes[1].list_name, "goog-phish-shavar"); 492 EXPECT_EQ(memcmp(&full_hashes[2].hash, 495 EXPECT_EQ(full_hashes[2].list_name, "goog-phish-shavar"); 506 &full_hashes)); 547 std::vector<SBFullHashResult> full_hashes; local 567 std::vector<SBFullHashResult> full_hashes; local [all...] |
H A D | safe_browsing_store.cc | 67 // Remove items in |removes| from |full_hashes|. |full_hashes| and 71 std::vector<T>* full_hashes) { 77 typename std::vector<T>::iterator out = full_hashes->begin(); 79 typename std::vector<T>::iterator hash_iter = full_hashes->begin(); 82 while (hash_iter != full_hashes->end() && remove_iter != removes.end()) { 97 } while (hash_iter != full_hashes->end() && 104 full_hashes->erase(out, hash_iter); 70 RemoveMatchingPrefixes(const std::vector<SBAddPrefix>& removes, std::vector<T>* full_hashes) argument
|
H A D | protocol_parser.cc | 56 std::vector<SBFullHashResult>* full_hashes) { 57 full_hashes->clear(); 108 full_hashes->push_back(full_hash); 51 ParseGetHash( const char* chunk_data, int chunk_len, const std::string& key, bool* re_key, std::vector<SBFullHashResult>* full_hashes) argument
|
H A D | protocol_manager.cc | 164 std::vector<SBFullHashResult> full_hashes; local 165 sb_service_->HandleGetHashResults(check, full_hashes, false); 234 std::vector<SBFullHashResult> full_hashes; local 252 &full_hashes); 257 full_hashes.clear(); 273 // Call back the SafeBrowsingService with full_hashes, even if there was a 274 // parse error or an error response code (in which case full_hashes will be 276 sb_service_->HandleGetHashResults(check, full_hashes, can_cache);
|
H A D | safe_browsing_database_unittest.cc | 496 std::vector<SBFullHashResult> full_hashes; local 502 &full_hashes, now)); 509 &full_hashes, now)); 514 &full_hashes, now)); 519 &full_hashes, now)); 524 &full_hashes, now)); 529 &full_hashes, now)); 534 &full_hashes, now)); 539 &full_hashes, now)); 545 &full_hashes, no 778 std::vector<SBFullHashResult> full_hashes; local 852 std::vector<SBFullHashResult> full_hashes; local 1398 std::vector<SBFullHashResult> full_hashes; local [all...] |
H A D | safe_browsing_service.cc | 65 // |true| if there were any prefix hits in |full_hashes|. 69 const std::vector<SBFullHashResult>& full_hashes) { 71 if (full_hashes.empty()) { 380 const std::vector<SBFullHashResult>& full_hashes, 397 OnHandleGetHashResults(check, full_hashes); // 'check' is deleted here. 401 database_->CacheHashResults(prefixes, full_hashes); 930 const std::vector<SBFullHashResult>& full_hashes) { 932 GetDatabase()->CacheHashResults(prefixes, full_hashes); 937 const std::vector<SBFullHashResult>& full_hashes) { 943 const bool hit = HandleOneCheck(check, full_hashes); 66 RecordGetHashCheckStatus( bool hit, bool is_download, const std::vector<SBFullHashResult>& full_hashes) argument 378 HandleGetHashResults( SafeBrowsingCheck* check, const std::vector<SBFullHashResult>& full_hashes, bool can_cache) argument 928 CacheHashResults( const std::vector<SBPrefix>& prefixes, const std::vector<SBFullHashResult>& full_hashes) argument 935 OnHandleGetHashResults( SafeBrowsingCheck* check, const std::vector<SBFullHashResult>& full_hashes) argument 961 HandleOneCheck( SafeBrowsingCheck* check, const std::vector<SBFullHashResult>& full_hashes) argument [all...] |
H A D | safe_browsing_util.cc | 419 const std::vector<SBFullHashResult>& full_hashes) { 420 for (size_t i = 0; i < full_hashes.size(); ++i) { 421 if (hash == full_hashes[i].hash) 428 const std::vector<SBFullHashResult>& full_hashes) { 429 if (full_hashes.empty()) 442 int index = GetHashIndex(key, full_hashes); 418 GetHashIndex(const SBFullHash& hash, const std::vector<SBFullHashResult>& full_hashes) argument 427 GetUrlHashIndex(const GURL& url, const std::vector<SBFullHashResult>& full_hashes) argument
|
H A D | safe_browsing_database.cc | 78 std::vector<SBFullHash>* full_hashes) { 95 full_hashes->push_back(full_hash); 105 full_hashes->push_back(full_hash); 114 std::vector<SBFullHash> full_hashes; local 116 BrowseFullHashesToCheck(urls[i], false, &full_hashes); 118 for (size_t i = 0; i < full_hashes.size(); ++i) 119 prefixes->push_back(full_hashes[i].prefix); 122 // Find the entries in |full_hashes| with prefix in |prefix_hits|, and 129 // |full_hashes| in parallel, so they must be sorted by prefix. 131 const std::vector<SBAddFullHash>& full_hashes, 76 BrowseFullHashesToCheck(const GURL& url, bool include_whitelist_hashes, std::vector<SBFullHash>* full_hashes) argument 130 GetCachedFullHashesForBrowse(const std::vector<SBPrefix>& prefix_hits, const std::vector<SBAddFullHash>& full_hashes, std::vector<SBFullHashResult>* full_hits, base::Time last_update) argument 539 std::vector<SBAddFullHash> full_hashes; local 590 std::vector<SBFullHash> full_hashes; local 1050 std::vector<SBAddFullHash> full_hashes; local 1290 LoadCsdWhitelist( const std::vector<SBAddFullHash>& full_hashes) argument [all...] |