/third_party/node/deps/v8/src/base/ |
D | virtual-address-space-page-allocator.cc | 60 bool VirtualAddressSpacePageAllocator::DiscardSystemPages(void* address, in DiscardSystemPages() function in v8::base::VirtualAddressSpacePageAllocator 62 return vas_->DiscardSystemPages(reinterpret_cast<Address>(address), size); in DiscardSystemPages()
|
D | virtual-address-space.cc | 164 bool VirtualAddressSpace::DiscardSystemPages(Address address, size_t size) { in DiscardSystemPages() function in v8::base::VirtualAddressSpace 168 return OS::DiscardSystemPages(reinterpret_cast<void*>(address), size); in DiscardSystemPages() 353 bool VirtualAddressSubspace::DiscardSystemPages(Address address, size_t size) { in DiscardSystemPages() function in v8::base::VirtualAddressSubspace 357 return reservation_.DiscardSystemPages(reinterpret_cast<void*>(address), in DiscardSystemPages()
|
D | virtual-address-space.h | 84 bool DiscardSystemPages(Address address, size_t size) override; 129 bool DiscardSystemPages(Address address, size_t size) override;
|
D | page-allocator.cc | 152 bool PageAllocator::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::PageAllocator 153 return base::OS::DiscardSystemPages(address, size); in DiscardSystemPages()
|
D | bounded-page-allocator.cc | 188 bool BoundedPageAllocator::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::BoundedPageAllocator 189 return page_allocator_->DiscardSystemPages(address, size); in DiscardSystemPages()
|
D | emulated-virtual-address-subspace.cc | 181 bool EmulatedVirtualAddressSubspace::DiscardSystemPages(Address address, in DiscardSystemPages() function in v8::base::EmulatedVirtualAddressSubspace 184 return parent_space_->DiscardSystemPages(address, size); in DiscardSystemPages()
|
D | virtual-address-space-page-allocator.h | 51 bool DiscardSystemPages(void* address, size_t size) override;
|
D | page-allocator.h | 48 bool DiscardSystemPages(void* address, size_t size) override; in NON_EXPORTED_BASE()
|
D | bounded-page-allocator.h | 84 bool DiscardSystemPages(void* address, size_t size) override;
|
D | emulated-virtual-address-subspace.h | 73 bool DiscardSystemPages(Address address, size_t size) override; in NON_EXPORTED_BASE()
|
/third_party/node/deps/v8/src/base/sanitizer/ |
D | lsan-virtual-address-space.h | 64 bool DiscardSystemPages(Address address, size_t size) override { in DiscardSystemPages() function 65 return vas_->DiscardSystemPages(address, size); in DiscardSystemPages()
|
/third_party/node/deps/v8/src/base/platform/ |
D | platform-fuchsia.cc | 288 bool OS::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::OS 299 DiscardSystemPages(address, size); in DecommitPages() 446 bool AddressSpaceReservation::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::AddressSpaceReservation 456 DiscardSystemPages(address, size); in DecommitPages()
|
D | platform-posix.cc | 486 USE(DiscardSystemPages(address, size)); in SetPermissions() 504 bool OS::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::OS 975 bool AddressSpaceReservation::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::AddressSpaceReservation 977 return OS::DiscardSystemPages(address, size); in DiscardSystemPages()
|
D | platform.h | 381 V8_WARN_UNUSED_RESULT static bool DiscardSystemPages(void* address, 453 V8_WARN_UNUSED_RESULT bool DiscardSystemPages(void* address, size_t size);
|
D | platform-cygwin.cc | 176 bool OS::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::OS
|
D | platform-starboard.cc | 483 bool OS::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::OS
|
D | platform-win32.cc | 1004 bool OS::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::OS 1284 bool AddressSpaceReservation::DiscardSystemPages(void* address, size_t size) { in DiscardSystemPages() function in v8::base::AddressSpaceReservation 1286 return OS::DiscardSystemPages(address, size); in DiscardSystemPages()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
D | caged-heap-local-data.cc | 40 allocator->DiscardSystemPages(reinterpret_cast<void*>(begin), end - begin); in Reset()
|
D | sweeper.cc | 99 page_allocator_.DiscardSystemPages( in Free()
|
/third_party/node/deps/v8/include/ |
D | v8-platform.h | 439 virtual bool DiscardSystemPages(void* address, size_t size) { return true; } in DiscardSystemPages() function 833 virtual V8_WARN_UNUSED_RESULT bool DiscardSystemPages(Address address, in DiscardSystemPages() function
|
/third_party/node/deps/v8/src/wasm/ |
D | memory-protection-key.cc | 188 USE(page_allocator->DiscardSystemPages(address, size)); in SetPermissionsAndMemoryProtectionKey()
|
/third_party/node/deps/v8/src/heap/ |
D | memory-chunk.cc | 28 CHECK(page_allocator->DiscardSystemPages( in DiscardUnusedMemory()
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 510 DiscardSystemPages(committed_data_end, discardable_bytes); 520 DiscardSystemPages(begin_addr, unprovisioned_bytes); 530 DiscardSystemPages(begin_addr, partial_slot_bytes);
|