Home
last modified time | relevance | path

Searched refs:reuse_count (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
Deviction.cc410 if (info->reuse_count < kint32max) { in OnOpenEntryV2()
411 info->reuse_count++; in OnOpenEntryV2()
415 if (1 == info->reuse_count) { in OnOpenEntryV2()
419 } else if (kHighUse == info->reuse_count) { in OnOpenEntryV2()
431 DCHECK(!info->reuse_count); in OnCreateEntryV2()
439 if (info->refetch_count > kHighUse && info->reuse_count < kHighUse) { in OnCreateEntryV2()
440 info->reuse_count = kHighUse; in OnCreateEntryV2()
442 info->reuse_count++; in OnCreateEntryV2()
485 if (!info->reuse_count) in GetListForEntryV2()
488 if (info->reuse_count < kHighUse) in GetListForEntryV2()
Deviction_v3.cc177 if (info->reuse_count < kint32max) { in OnOpenEntry()
178 info->reuse_count++; in OnOpenEntry()
182 if (1 == info->reuse_count) { in OnOpenEntry()
186 } else if (kHighUse == info->reuse_count) { in OnOpenEntry()
198 DCHECK(!info->reuse_count); in OnCreateEntry()
206 if (info->refetch_count > kHighUse && info->reuse_count < kHighUse) { in OnCreateEntry()
207 info->reuse_count = kHighUse; in OnCreateEntry()
209 info->reuse_count++; in OnCreateEntry()
Dwebfonts_histogram.cc86 info->reuse_count); in RecordCacheHit()
99 info->reuse_count); in RecordEviction()
Ddisk_format_v3.h214 uint8 reuse_count; member
233 uint8 reuse_count; member
Ddisk_format.h105 int32 reuse_count; // How often is this entry used. member
Dentry_impl_v3.cc342 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck()
Dentry_impl.cc580 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_thread_registry.cc20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), in ThreadContextBase()
286 tctx->reuse_count++; in QuarantinePush()
287 if (max_reuse_ > 0 && tctx->reuse_count >= max_reuse_) in QuarantinePush()
Dsanitizer_thread_registry.h41 u32 reuse_count; // Number of times this tid was reused. variable
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_thread.cc63 if (reuse_count == 0) in OnCreated()
88 new(thr) ThreadState(ctx, tid, unique_id, epoch0, reuse_count, in OnStarted()
Dtsan_rtl.cc96 unsigned reuse_count, in ThreadState() argument
104 , clock(tid, reuse_count) in ThreadState()
Dtsan_rtl.h392 unsigned reuse_count,
/external/chromium_org/net/tools/dump_cache/
Ddump_files.cc287 printf("reuse count: %d\n", entry.reuse_count); in DumpEntry()