Searched refs:WrapperPersistentRegion (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHandle.cpp10 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* oldHea
[all...]
H A DThreadState.h59 class WrapperPersistentRegion;
556 WrapperPersistentRegion* wrapperRoots() const
561 WrapperPersistentRegion* takeWrapperPersistentRegion();
562 void freeWrapperPersistentRegion(WrapperPersistentRegion*);
688 WrapperPersistentRegion* m_liveWrapperPersistents;
689 WrapperPersistentRegion* m_pooledWrapperPersistents;
H A DThreadState.cpp298 , 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...]
H A DHandle.h164 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 { class in namespace:blink
239 WTF_MAKE_NONCOPYABLE(WrapperPersistentRegion);
241 WrapperPersistentRegion() function in class:blink::WrapperPersistentRegion
283 bool removeIfNotLast(WrapperPersistentRegion** headPtr);
284 static void insertHead(WrapperPersistentRegion** headPtr, WrapperPersistentRegion* newHea
[all...]

Completed in 6552 milliseconds