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

/external/chromium_org/net/disk_cache/blockfile/
H A Dbackend_impl_v3.cc446 int64 use_hours = total_hours - no_use_hours; local
452 CACHE_UMA(HOURS, "AllOpenByUseHours.Miss", 0, use_hours);
465 CACHE_UMA(HOURS, "AllOpenByUseHours.Hit", 0, use_hours);
1275 int64 use_hours = stats_.GetCounter(Stats::LAST_REPORT_TIMER) / 120; local
1278 // We may see users with no use_hours at this point if this is the first time
1280 if (use_hours)
1281 use_hours = total_hours - use_hours;
1283 if (!use_hours || !GetEntryCount() || !header->num_bytes)
1286 CACHE_UMA(HOURS, "UseTime", static_cast<int>(use_hours));
[all...]
H A Dbackend_impl.cc482 int64 use_hours = total_hours - no_use_hours; local
488 CACHE_UMA(HOURS, "AllOpenByUseHours.Miss", 0, use_hours);
501 CACHE_UMA(HOURS, "AllOpenByUseHours.Hit", 0, use_hours);
1891 int64 use_hours = stats_.GetCounter(Stats::LAST_REPORT_TIMER) / 120; local
1894 // We may see users with no use_hours at this point if this is the first time
1896 if (use_hours)
1897 use_hours = total_hours - use_hours;
1899 if (!use_hours || !GetEntryCount() || !data_->header.num_bytes)
1902 CACHE_UMA(HOURS, "UseTime", 0, static_cast<int>(use_hours));
[all...]

Completed in 86 milliseconds