Home
last modified time | relevance | path

Searched refs:use_hours (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
Dbackend_impl_v3.cc446 int64 use_hours = total_hours - no_use_hours; in OpenEntry() local
452 CACHE_UMA(HOURS, "AllOpenByUseHours.Miss", 0, use_hours); in OpenEntry()
465 CACHE_UMA(HOURS, "AllOpenByUseHours.Hit", 0, use_hours); in OpenEntry()
1275 int64 use_hours = stats_.GetCounter(Stats::LAST_REPORT_TIMER) / 120; in ReportStats() local
1280 if (use_hours) in ReportStats()
1281 use_hours = total_hours - use_hours; in ReportStats()
1283 if (!use_hours || !GetEntryCount() || !header->num_bytes) in ReportStats()
1286 CACHE_UMA(HOURS, "UseTime", static_cast<int>(use_hours)); in ReportStats()
1288 int64 trim_rate = stats_.GetCounter(Stats::TRIM_ENTRY) / use_hours; in ReportStats()
Dbackend_impl.cc482 int64 use_hours = total_hours - no_use_hours; in OpenEntryImpl() local
488 CACHE_UMA(HOURS, "AllOpenByUseHours.Miss", 0, use_hours); in OpenEntryImpl()
501 CACHE_UMA(HOURS, "AllOpenByUseHours.Hit", 0, use_hours); in OpenEntryImpl()
1891 int64 use_hours = stats_.GetCounter(Stats::LAST_REPORT_TIMER) / 120; in ReportStats() local
1896 if (use_hours) in ReportStats()
1897 use_hours = total_hours - use_hours; in ReportStats()
1899 if (!use_hours || !GetEntryCount() || !data_->header.num_bytes) in ReportStats()
1902 CACHE_UMA(HOURS, "UseTime", 0, static_cast<int>(use_hours)); in ReportStats()
1907 CACHE_UMA(HOURS, "HitRatioByUseTime", 0, implicit_cast<int>(use_hours)); in ReportStats()
1910 int64 trim_rate = stats_.GetCounter(Stats::TRIM_ENTRY) / use_hours; in ReportStats()