HomeSort by relevance Sort by last modified time
    Searched refs:queued_checks_ (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service.cc 275 queued_checks_.push_back(check);
323 for (std::deque<QueuedCheck>::iterator it(queued_checks_.begin());
324 it != queued_checks_.end(); ) {
328 it = queued_checks_.erase(it);
504 // * If |queued_checks_| is non-empty and |database_| is non-NULL, we're
511 if (!DatabaseAvailable() || !queued_checks_.empty())
600 while (!queued_checks_.empty()) {
601 QueuedCheck queued = queued_checks_.front();
609 queued_checks_.pop_front();
779 HISTOGRAM_COUNTS("SB.QueueDepth", queued_checks_.size())
    [all...]
safe_browsing_service.h 455 std::deque<QueuedCheck> queued_checks_; member in class:SafeBrowsingService
  /external/chromium_org/chrome/browser/safe_browsing/
database_manager.cc 333 queued_checks_.push_back(check);
380 for (std::deque<QueuedCheck>::iterator it(queued_checks_.begin());
381 it != queued_checks_.end(); ) {
385 it = queued_checks_.erase(it);
510 while (!queued_checks_.empty()) {
511 QueuedCheck queued = queued_checks_.front();
519 queued_checks_.pop_front();
589 // * If |queued_checks_| is non-empty and |database_| is non-NULL, we're
596 if (!DatabaseAvailable() || !queued_checks_.empty())
733 HISTOGRAM_COUNTS("SB.QueueDepth", queued_checks_.size())
    [all...]
database_manager.h 402 std::deque<QueuedCheck> queued_checks_; member in class:SafeBrowsingDatabaseManager

Completed in 486 milliseconds