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

/external/webkit/Source/JavaScriptCore/wtf/wince/
H A DMemoryManager.h37 void setAllocationCanFail(bool c) { m_allocationCanFail = c; } function in class:WTF::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); }

Completed in 119 milliseconds