HomeSort by relevance Sort by last modified time
    Searched refs:WrapperPersistentRegion (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Handle.cpp 10 bool WrapperPersistentRegion::removeIfNotLast(WrapperPersistentRegion** headPtr)
30 void WrapperPersistentRegion::insertHead(WrapperPersistentRegion** headPtr, WrapperPersistentRegion* newHead)
33 WrapperPersistentRegion* oldHead = *headPtr;
43 WrapperPersistentRegion* WrapperPersistentRegion::removeHead(WrapperPersistentRegion** headPtr)
47 WrapperPersistentRegion* oldHead = *headPtr
    [all...]
Handle.h 164 WrapperPersistentRegion* region()
166 return reinterpret_cast<WrapperPersistentRegion*>(
209 // offset from this node to the base of the containing WrapperPersistentRegion.
212 friend class WrapperPersistentRegion;
238 class PLATFORM_EXPORT WrapperPersistentRegion {
239 WTF_MAKE_NONCOPYABLE(WrapperPersistentRegion);
241 WrapperPersistentRegion()
283 bool removeIfNotLast(WrapperPersistentRegion** headPtr);
284 static void insertHead(WrapperPersistentRegion** headPtr, WrapperPersistentRegion* newHead)
    [all...]
ThreadState.h 59 class WrapperPersistentRegion;
556 WrapperPersistentRegion* wrapperRoots() const
561 WrapperPersistentRegion* takeWrapperPersistentRegion();
562 void freeWrapperPersistentRegion(WrapperPersistentRegion*);
688 WrapperPersistentRegion* m_liveWrapperPersistents;
689 WrapperPersistentRegion* m_pooledWrapperPersistents;
ThreadState.cpp 298 , m_liveWrapperPersistents(new WrapperPersistentRegion())
341 WrapperPersistentRegion* region = WrapperPersistentRegion::removeHead(&m_liveWrapperPersistents);
345 WrapperPersistentRegion* region = WrapperPersistentRegion::removeHead(&m_pooledWrapperPersistents);
581 WrapperPersistentRegion::trace(m_liveWrapperPersistents, visitor);
710 WrapperPersistentRegion* ThreadState::takeWrapperPersistentRegion()
712 WrapperPersistentRegion* region;
714 region = WrapperPersistentRegion::removeHead(&m_pooledWrapperPersistents);
717 region = new WrapperPersistentRegion();
    [all...]

Completed in 241 milliseconds