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

/external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
H A DPageReservation.h1 #include <JavaScriptCore/PageReservation.h>
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DPageReservation.h3 #include <JavaScriptCore/PageReservation.h>
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageReservation.h34 PageReservation
36 Like PageAllocation, the PageReservation class provides a cross-platform memory
38 VirtualAlloc than posix mmap. PageReservation can be used to allocate virtual
39 memory without committing physical memory pages using PageReservation::reserve.
57 class PageReservation : private PageBlock { class in namespace:WTF
59 PageReservation() function in class:WTF::PageReservation
104 static PageReservation reserve(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
107 return PageReservation(OSAllocator::reserveUncommitted(size, usage, writable, executable), size, writable, executable);
116 PageReservation tmp;
126 PageReservation(voi function in class:WTF::PageReservation
[all...]
H A DPageAllocationAligned.h30 #include <wtf/PageReservation.h>
/external/webkit/Source/JavaScriptCore/interpreter/
H A DRegisterFile.h38 #include <wtf/PageReservation.h>
153 PageReservation m_reservation;
175 m_reservation = PageReservation::reserve(roundUpAllocationSize(bufferLength, commitSize), OSAllocator::JSVMStackPages);
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocatorFixedVMPool.cpp38 #include <wtf/PageReservation.h>
412 m_reservation = PageReservation::reserve(FixedVMPoolPageTables::size(), OSAllocator::JSJITCodePages, EXECUTABLE_POOL_WRITABLE, true);
479 PageReservation m_reservation;

Completed in 5783 milliseconds