Home | History | Annotate | Download | only in wince

Lines Matching refs:memoryManager

31     class MemoryManager {
33 MemoryManager();
34 ~MemoryManager();
53 friend MemoryManager* memoryManager();
58 MemoryManager* memoryManager();
62 MemoryAllocationCanFail() : m_old(memoryManager()->allocationCanFail()) { memoryManager()->setAllocationCanFail(true); }
63 ~MemoryAllocationCanFail() { memoryManager()->setAllocationCanFail(m_old); }
70 MemoryAllocationCannotFail() : m_old(memoryManager()->allocationCanFail()) { memoryManager()->setAllocationCanFail(false); }
71 ~MemoryAllocationCannotFail() { memoryManager()->setAllocationCanFail(m_old); }
77 using WTF::MemoryManager;
78 using WTF::memoryManager;