OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HeapContainsCache
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.h
50
class
HeapContainsCache
;
470
HeapContainsCache
*
heapContainsCache
() { return m_heapContainsCache.get(); }
577
OwnPtr<
HeapContainsCache
> m_heapContainsCache;
ThreadState.cpp
278
, m_heapContainsCache(adoptPtr(new
HeapContainsCache
()))
709
BaseHeapPage* cachedPage =
heapContainsCache
()->lookup(address);
726
heapContainsCache
()->addEntry(address, page);
Heap.cpp
[
all
...]
Heap.h
570
// A
HeapContainsCache
is a positive cache. Therefore, it must be flushed when
593
// cache. For the
HeapContainsCache
this means the address is in the heap.
615
class
HeapContainsCache
: public HeapExtentCache<PositiveEntry> {
807
m_threadState->
heapContainsCache
()->flush();
[
all
...]
Completed in 56 milliseconds