Lines Matching refs:GetPageAllocator
49 V8::GetCurrentPlatform()->GetPageAllocator(); in Construct()
61 v8::PageAllocator* GetPageAllocator() { return page_allocator.Get(); } in GetPageAllocator() function
134 size_t AllocatePageSize() { return GetPageAllocator()->AllocatePageSize(); } in AllocatePageSize()
136 size_t CommitPageSize() { return GetPageAllocator()->CommitPageSize(); } in CommitPageSize()
139 GetPageAllocator()->SetRandomMmapSeed(seed); in SetRandomMmapSeed()
142 void* GetRandomMmapAddr() { return GetPageAllocator()->GetRandomMmapAddr(); } in GetRandomMmapAddr()
147 DCHECK_EQ(0UL, size & (GetPageAllocator()->AllocatePageSize() - 1)); in AllocatePages()
151 GetPageAllocator()->AllocatePages(address, size, alignment, access); in AllocatePages()
165 DCHECK_EQ(0UL, size & (GetPageAllocator()->AllocatePageSize() - 1)); in FreePages()
166 bool result = GetPageAllocator()->FreePages(address, size); in FreePages()
177 bool result = GetPageAllocator()->ReleasePages(address, size, new_size); in ReleasePages()
189 return GetPageAllocator()->SetPermissions(address, size, access); in SetPermissions()