HomeSort by relevance Sort by last modified time
    Searched refs:stats_ (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium/net/disk_cache/
stats_histogram.cc 16 const Stats* StatsHistogram::stats_ = NULL; member in class:disk_cache::StatsHistogram
21 stats_ = NULL;
57 if (stats_)
62 stats_ = stats;
67 DCHECK(stats_);
68 return stats_->GetBucketRange(i);
76 DCHECK(stats_);
78 stats_->Snapshot(&my_sample);
backend_impl.cc 506 // stats_ and rankings_ may end up calling back to us so we better be enabled.
508 if (!stats_.Init(this, &data_->header.stats))
522 stats_.Store();
575 stats_.OnEvent(Stats::DOOM_CACHE);
632 stats_.OnEvent(Stats::DOOM_RECENT);
677 stats_.OnEvent(Stats::OPEN_MISS);
684 stats_.OnEvent(Stats::OPEN_MISS);
692 stats_.OnEvent(Stats::OPEN_HIT);
742 stats_.OnEvent(Stats::CREATE_ERROR);
750 stats_.OnEvent(Stats::CREATE_ERROR)
    [all...]
stats_histogram.h 51 static const Stats* stats_; member in class:disk_cache::StatsHistogram
  /external/chromium_org/chrome/browser/notifications/
message_center_stats_collector.cc 58 stats_[notification_id] = NotificationStats(notification_id);
60 StatsCollection::iterator iter = stats_.find(notification_id);
61 DCHECK(iter != stats_.end());
63 stats_[notification_id].CollectAction(NOTIFICATION_ACTION_ADD);
68 StatsCollection::iterator iter = stats_.find(notification_id);
69 if (iter == stats_.end())
76 stats_.erase(notification_id);
81 StatsCollection::iterator iter = stats_.find(notification_id);
82 if (iter == stats_.end())
91 StatsCollection::iterator iter = stats_.find(notification_id)
    [all...]
message_center_stats_collector.h 85 StatsCollection stats_; member in class:MessageCenterStatsCollector
  /external/chromium_org/chrome/browser/task_manager/
renderer_resource.cc 30 memset(&stats_, 0, sizeof(stats_));
54 return stats_;
71 stats_ = stats;
  /external/openfst/src/include/fst/
replace-util.h 165 stats_.clear();
187 mutable vector<ReplaceStats> stats_; // Per Fst statistics member in class:fst::ReplaceUtil
268 stats_.reserve(fst_array_.size());
274 stats_.push_back(ReplaceStats());
287 ++stats_[i].nstates;
289 ++stats_[i].nfinal;
294 ++stats_[i].narcs;
303 ++stats_[i].nnonterms;
304 ++stats_[j].nref;
305 ++stats_[j].inref[i]
    [all...]
  /external/chromium_org/media/cast/rtp_receiver/
receiver_stats_unittest.cc 21 : stats_(&testing_clock_),
50 ReceiverStats stats_; member in class:media::cast::ReceiverStatsTest
62 stats_.GetStatistics(&fraction_lost_, &cumulative_lost_,
73 stats_.UpdateStatistics(rtp_header_);
80 stats_.GetStatistics(&fraction_lost_, &cumulative_lost_,
92 stats_.UpdateStatistics(rtp_header_);
99 stats_.GetStatistics(&fraction_lost_, &cumulative_lost_,
114 stats_.UpdateStatistics(rtp_header_);
121 stats_.GetStatistics(&fraction_lost_, &cumulative_lost_,
133 stats_.UpdateStatistics(rtp_header_)
    [all...]
rtp_receiver.cc 35 stats_.reset(new ReceiverStats(clock));
55 stats_->UpdateStatistics(rtp_header);
63 stats_->GetStatistics(fraction_lost,
rtp_receiver.h 49 scoped_ptr<ReceiverStats> stats_; member in class:media::cast::RtpReceiver
  /external/chromium_org/net/disk_cache/
stats_histogram.cc 29 stats_(stats) {}
74 stats_ = NULL;
79 if (stats_)
80 stats_->Snapshot(samples.get());
backend_impl.cc 268 // stats_ and rankings_ may end up calling back to us so we better be enabled.
356 stats_.OnEvent(Stats::DOOM_CACHE);
413 stats_.OnEvent(Stats::DOOM_RECENT);
479 int64 total_hours = stats_.GetCounter(Stats::TIMER) / 120;
480 int64 no_use_hours = stats_.GetCounter(Stats::LAST_REPORT_TIMER) / 120;
488 stats_.OnEvent(Stats::OPEN_MISS);
501 stats_.OnEvent(Stats::OPEN_HIT);
551 stats_.OnEvent(Stats::CREATE_ERROR);
559 stats_.OnEvent(Stats::CREATE_ERROR);
571 stats_.OnEvent(Stats::CREATE_ERROR)
    [all...]
stats_histogram.h 52 const Stats* stats_; member in class:disk_cache::StatsHistogram
  /external/chromium_org/media/cast/logging/
logging_impl.cc 19 stats_(clock) {}
29 stats_.InsertFrameEvent(event, rtp_timestamp, frame_id);
46 stats_.InsertFrameEventWithSize(event, rtp_timestamp, frame_id, frame_size);
66 stats_.InsertFrameEventWithDelay(event, rtp_timestamp, frame_id, delay);
109 stats_.InsertPacketEvent(event, rtp_timestamp, frame_id, packet_id,
124 stats_.InsertGenericEvent(event, value);
155 const FrameStatsMap* stats = stats_.GetFrameStatsData();
190 const PacketStatsMap* stats = stats_.GetPacketStatsData();
206 const GenericStatsMap* stats = stats_.GetGenericStatsData();
221 stats_.Reset()
    [all...]
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager.cc 84 RendererInfo* stats = &(stats_[renderer_id]);
96 stats_.erase(renderer_id);
103 StatsMap::iterator item = stats_.find(renderer_id);
104 if (item == stats_.end())
124 StatsMap::iterator entry = stats_.find(renderer_id);
125 if (entry == stats_.end())
173 StatsMap::iterator elmt = stats_.find(*iter);
174 if (elmt != stats_.end()) {
270 StatsMap::iterator elmt = stats_.find(*iter);
271 if (elmt != stats_.end()
    [all...]
web_cache_manager_browsertest.cc 63 WebCacheManager::GetInstance()->stats_.size(), 1U);
  /external/chromium_org/chrome/browser/renderer_host/
web_cache_manager.cc 96 RendererInfo* stats = &(stats_[renderer_id]);
108 stats_.erase(renderer_id);
115 StatsMap::iterator item = stats_.find(renderer_id);
116 if (item == stats_.end())
136 StatsMap::iterator entry = stats_.find(renderer_id);
137 if (entry == stats_.end())
205 StatsMap::iterator elmt = stats_.find(*iter);
206 if (elmt != stats_.end()) {
302 StatsMap::iterator elmt = stats_.find(*iter);
303 if (elmt != stats_.end()
    [all...]
web_cache_manager_browsertest.cc 65 WebCacheManager::GetInstance()->stats_.size(), 1U);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.cc 103 ASSERT(stats_.unmapped_bytes+ stats_.committed_bytes==stats_.system_bytes);
167 stats_.committed_bytes += span->length << kPageShift;
173 stats_.committed_bytes -= span->length << kPageShift;
213 ASSERT(stats_.unmapped_bytes+ stats_.committed_bytes==stats_.system_bytes);
230 ASSERT(stats_.unmapped_bytes+ stats_.committed_bytes==stats_.system_bytes)
    [all...]
  /external/chromium_org/net/disk_cache/v3/
backend_impl_v3.cc 220 stats_.OnEvent(Stats::DOOM_ENTRY);
273 stats_.ModifyStorageStats(old_size, new_size);
277 stats_.ModifyStorageStats(0, size);
325 int64 last_report = stats_.GetCounter(Stats::LAST_REPORT);
328 stats_.SetCounter(Stats::LAST_REPORT, Time::Now().ToInternalValue());
343 int64 use_time = stats_.GetCounter(Stats::TIMER);
345 CACHE_UMA(PERCENTAGE, "FirstHitRatio", 0, stats_.GetHitRatio());
357 int large_entries_bytes = stats_.GetLargeEntriesSize();
362 CACHE_UMA(PERCENTAGE, "FirstResurrectRatio", 0, stats_.GetResurrectRatio());
371 stats_.ResetRatios()
    [all...]
  /external/chromium_org/v8/test/cctest/
test-strings.cc 281 ConsStringStats stats_; member in class:ConsStringGenerationData
315 stats_.Reset();
386 CHECK(static_cast<unsigned>(root->length()) == data->stats_.chars_);
390 stats.VerifyEqual(data->stats_);
395 stats.empty_leaves_ = data->stats_.empty_leaves_;
396 stats.left_traversals_ = data->stats_.left_traversals_;
397 stats.right_traversals_ = data->stats_.right_traversals_;
400 stats.VerifyEqual(data->stats_);
417 terminate |= data->stats_.leaves_ >= data->max_leaves_;
427 data->stats_.leaves_++
    [all...]
  /external/chromium_org/dbus/
dbus_statistics.cc 71 STLDeleteContainerPointers(stats_.begin(), stats_.end());
103 // Look up the Stat entry in |stats_|. If |add_stat| is true, add a new entry
111 StatSet::iterator found = stats_.find(stat.get());
112 if (found != stats_.end())
116 found = stats_.insert(stat.release()).first;
120 StatSet& stats() { return stats_; }
124 StatSet stats_; member in class:dbus::__anon11073::DBusStatistics
  /external/compiler-rt/lib/asan/
asan_thread.h 91 AsanStats &stats() { return stats_; }
107 AsanStats stats_; member in class:__asan::AsanThread
  /external/chromium_org/remoting/client/
rectangle_update_decoder.cc 300 stats_.video_frame_rate()->Record(1);
303 stats_.video_bandwidth()->Record(packet->data().size());
305 stats_.video_capture_ms()->Record(packet->capture_time_ms());
307 stats_.video_encode_ms()->Record(packet->encode_time_ms());
314 stats_.round_trip_ms()->Record(round_trip_latency.InMilliseconds());
338 stats_.video_decode_ms()->Record(
346 return &stats_;
  /external/libvpx/libvpx/test/
encode_test_driver.h 92 : cfg_(cfg), deadline_(deadline), init_flags_(init_flags), stats_(stats) {
149 TwopassStatsStore *stats_; member in class:libvpx_test::Encoder
219 TwopassStatsStore stats_; member in class:libvpx_test::EncoderTest

Completed in 2711 milliseconds

1 2 3