Searched refs:minDeadBytes (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/loader/cache/
H A DMemoryCache.h119 // - minDeadBytes: The maximum number of bytes that dead resources should consume when the cache is under pressure.
122 void setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes);
H A DMemoryCache.cpp274 void MemoryCache::setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes) argument
276 ASSERT(minDeadBytes <= maxDeadBytes);
278 m_minDeadCapacity = minDeadBytes;
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.h242 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes);
H A DInternals.idl204 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes);
H A DInternals.cpp1489 Vector<unsigned long> Internals::setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes) argument
1495 memoryCache()->setCapacities(minDeadBytes, maxDeadBytes, totalBytes);

Completed in 108 milliseconds