Searched defs:OSAllocator (Results 1 - 3 of 3) sorted by relevance
/external/webkit/Source/JavaScriptCore/wtf/ |
H A D | PageAllocation.h | 30 #include <wtf/OSAllocator.h> 99 static PageAllocation allocate(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false) argument 102 return PageAllocation(OSAllocator::reserveAndCommit(size, usage, writable, executable), size); 115 OSAllocator::decommitAndRelease(tmp.base(), tmp.size());
|
H A D | PageReservation.h | 85 OSAllocator::commit(start, size, m_writable, m_executable); 96 OSAllocator::decommit(start, size); 104 static PageReservation reserve(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false) argument 107 return PageReservation(OSAllocator::reserveUncommitted(size, usage, writable, executable), size, writable, executable); 122 OSAllocator::releaseDecommitted(tmp.base(), tmp.size());
|
H A D | OSAllocator.h | 35 class OSAllocator { class in namespace:WTF 70 inline void* OSAllocator::reserveAndCommit(size_t reserveSize, size_t commitSize, Usage usage, bool writable, bool executable) 77 inline void OSAllocator::decommitAndRelease(void* releaseBase, size_t releaseSize, void* decommitBase, size_t decommitSize) 92 inline void OSAllocator::decommitAndRelease(void* base, size_t size) 99 using WTF::OSAllocator;
|
Completed in 408 milliseconds