HomeSort by relevance Sort by last modified time
    Searched full: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 368 queued_checks_.push_back(queued_check);
416 for (std::deque<QueuedCheck>::iterator it(queued_checks_.begin());
417 it != queued_checks_.end(); ) {
421 it = queued_checks_.erase(it);
570 while (!queued_checks_.empty()) {
571 QueuedCheck queued = queued_checks_.front();
580 queued_checks_.pop_front();
650 // * If |queued_checks_| is non-empty and |database_| is non-NULL, we're
657 if (!DatabaseAvailable() || !queued_checks_.empty())
795 HISTOGRAM_COUNTS("SB.QueueDepth", queued_checks_.size())
    [all...]
database_manager.h 420 std::deque<QueuedCheck> queued_checks_; member in class:SafeBrowsingDatabaseManager

Completed in 164 milliseconds