OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:purgable
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/base/memory/
discardable_memory_manager.h
136
explicit AllocationInfo(size_t bytes) : bytes(bytes),
purgable
(false) {}
139
bool
purgable
;
member in struct:base::internal::DiscardableMemoryManager::AllocationInfo
discardable_memory_manager.cc
97
if (info.
purgable
) {
119
size_t bytes_required = info->
purgable
? 0u : info->bytes;
135
info->
purgable
= false;
154
info->
purgable
= true;
177
return it != allocations_.end() && it->second.
purgable
;
233
bool
purgable
= info->
purgable
&& info->last_usage <= timestamp;
local
234
if (!
purgable
)
240
info->
purgable
= false;
Completed in 2696 milliseconds