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

  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
module_ppapi.cc 84 if (crash_times_.size() == kMaxCrashesPerInterval) {
85 crash_times_.pop_front();
88 crash_times_.push_back(time);
93 if (crash_times_.size() != kMaxCrashesPerInterval) {
97 int64_t delta = now - crash_times_.front();
module_ppapi.h 35 std::deque<int64_t> crash_times_; member in class:plugin::ModulePpapi
  /external/chromium_org/content/browser/
plugin_service_impl.cc 724 crash_times_.find(path);
725 if (i == crash_times_.end()) {
726 crash_times_[path] = std::vector<base::Time>();
727 i = crash_times_.find(path);
739 crash_times_.find(path);
740 if (i == crash_times_.end()) {
plugin_service_impl.h 247 std::map<base::FilePath, std::vector<base::Time> > crash_times_; member in class:content::PluginServiceImpl

Completed in 1920 milliseconds