OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:purgeable
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/
PurgeableBuffer.h
52
bool makePurgeable(bool
purgeable
);
/external/webkit/Source/WebCore/platform/mac/
PurgeableBufferMac.cpp
38
//
Purgeable
buffers are allocated in multiples of the page size (4KB in common CPUs) so
78
bool PurgeableBuffer::makePurgeable(bool
purgeable
)
80
if (
purgeable
) {
93
// So apparently "
purgeable
" is the correct spelling and the API here is misspelled.
/external/webkit/Source/WebCore/loader/cache/
CachedResource.h
212
bool makePurgeable(bool
purgeable
);
CachedResource.cpp
544
bool CachedResource::makePurgeable(bool
purgeable
)
546
if (
purgeable
) {
556
// Should not make buffer
purgeable
if it has refs other than this since we don't want two copies.
MemoryCache.cpp
143
// Add the size back since we had subtracted it when we marked the memory as
purgeable
.
339
// resource
purgeable
in makeResourcePurgeable(). So adjust the size if we are evicting a
340
// resource that was not marked as
purgeable
.
596
bool
purgeable
= o->isPurgeable() && !purged;
local
602
purgeableSize +=
purgeable
? pageSize : 0;
/frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp
155
// since we "may" create a
purgeable
imageref, we require the stream be ref'able
411
// for now we don't allow
purgeable
with java inputstreams
464
/* Allow
purgeable
iff we own the FD, i.e., in the puregeable and
534
bool
purgeable
= optionsPurgeable(env, options) && !optionsJustBounds(env, options);
local
536
SkStream* stream = new SkMemoryStream(ar.ptr() + offset, length,
purgeable
);
538
return doDecode(env, stream, NULL, options,
purgeable
);
Completed in 224 milliseconds