Searched refs:reuse_count (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/net/disk_cache/blockfile/ |
D | eviction.cc | 410 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()
|
D | eviction_v3.cc | 177 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()
|
D | webfonts_histogram.cc | 86 info->reuse_count); in RecordCacheHit() 99 info->reuse_count); in RecordEviction()
|
D | disk_format_v3.h | 214 uint8 reuse_count; member 233 uint8 reuse_count; member
|
D | disk_format.h | 105 int32 reuse_count; // How often is this entry used. member
|
D | entry_impl_v3.cc | 342 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck()
|
D | entry_impl.cc | 580 if (stored->reuse_count < 0 || stored->refetch_count < 0) in SanityCheck()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_thread_registry.cc | 20 : 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()
|
D | sanitizer_thread_registry.h | 41 u32 reuse_count; // Number of times this tid was reused. variable
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_thread.cc | 63 if (reuse_count == 0) in OnCreated() 88 new(thr) ThreadState(ctx, tid, unique_id, epoch0, reuse_count, in OnStarted()
|
D | tsan_rtl.cc | 96 unsigned reuse_count, in ThreadState() argument 104 , clock(tid, reuse_count) in ThreadState()
|
D | tsan_rtl.h | 392 unsigned reuse_count,
|
/external/chromium_org/net/tools/dump_cache/ |
D | dump_files.cc | 287 printf("reuse count: %d\n", entry.reuse_count); in DumpEntry()
|