Searched refs:purged (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/base/memory/
H A Ddiscardable_memory_ashmem.cc37 bool purged = false; local
38 if (!manager_->AcquireLock(this, &purged))
42 return purged ? DISCARDABLE_MEMORY_LOCK_STATUS_PURGED
H A Ddiscardable_memory_emulated.cc68 bool purged = false; local
69 if (!g_shared_state.Pointer()->manager.AcquireLock(this, &purged))
73 return purged ? DISCARDABLE_MEMORY_LOCK_STATUS_PURGED
H A Ddiscardable_memory_mac.cc62 bool purged = false; variable
63 if (!g_shared_state.Pointer()->manager.AcquireLock(this, &purged))
67 return purged ? DISCARDABLE_MEMORY_LOCK_STATUS_PURGED
H A Ddiscardable_memory_manager.h21 // Allocate and acquire a lock that prevents the allocation from being purged
27 // purged by the system.
59 // of all allocation instances (in case they need to be purged), and the total
76 // limit expiration time without getting purged.
99 // |purged| to indicate whether or not allocation has been purged since last
101 bool AcquireLock(Allocation* allocation, bool* purged);
114 // Returns true if allocation can be purged. This should only be used by
H A Ddiscardable_memory_manager.cc85 bool* purged) {
112 *purged = !allocation->AllocateAndAcquireLock();
84 AcquireLock(Allocation* allocation, bool* purged) argument
H A Ddiscardable_memory_manager_unittest.cc100 bool purged; local
101 if (!manager_.AcquireLock(allocation, &purged))
103 return purged ? LOCK_STATUS_PURGED : LOCK_STATUS_SUCCESS;
212 // purged.
419 // Above soft limit but nothing that can be purged.
425 // Above soft limit but still nothing that can be purged as all unlocked
433 // should be purged and ReduceMemoryUsage() should return false as we're not
439 // time. It should be purged and ReduceMemoryUsage() should return true as
/external/jemalloc/include/jemalloc/internal/
H A Dstats.h91 * and total pages purged in order to keep dirty unused memory under
96 uint64_t purged; member in struct:arena_stats_s
/external/jemalloc/test/unit/
H A Dstats.c105 uint64_t npurge, nmadvise, purged; local
130 assert_d_eq(mallctl("stats.arenas.0.purged", &purged, &sz, NULL, 0),
136 assert_u64_le(nmadvise, purged,
137 "nmadvise should be no greater than purged");
/external/jemalloc/src/
H A Dstats.c211 uint64_t npurge, nmadvise, purged; local
231 CTL_I_GET("stats.arenas.0.purged", &purged, uint64_t);
234 " %"PRIu64" madvise%s, %"PRIu64" purged\n",
236 nmadvise, nmadvise == 1 ? "" : "s", purged);
H A Dctl.c385 {NAME("purged"), CTL(stats_arenas_i_purged)},
491 sstats->astats.purged += astats->astats.purged;
1623 ctl_stats.arenas[mib[2]].astats.purged, uint64_t)
H A Darena.c878 /* Don't purge if all dirty pages are already being purged. */
1082 arena->stats.purged += chunk->ndirty;
1168 * actually get purged, and adjust counters accordingly.
2365 astats->purged += arena->stats.purged;
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp275 // See if we have any purged resources we can evict.
603 bool purged = o->wasPurged(); local
604 bool purgeable = o->isPurgeable() && !purged;
607 size += purged ? 0 : o->size();
613 purgedSize += purged ? pageSize : 0;
/external/iproute2/doc/
H A Dip-cref.tex757 is deleted, all secondaries are purged too.
1724 listed but purged. The only difference is the default action: \verb|show|

Completed in 158 milliseconds