Home
last modified time | relevance | path

Searched refs:allocation_override_hook_ (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/third_party/base/allocator/partition_allocator/
Dpartition_alloc.cc76 PartitionAllocHooks::allocation_override_hook_(nullptr);
94 hooks_enabled_ = allocation_observer_hook_ || allocation_override_hook_; in SetObserverHooks()
102 CHECK((!allocation_override_hook_ && !free_override_hook_ && in SetOverrideHooks()
105 allocation_override_hook_ = alloc_hook; in SetOverrideHooks()
109 hooks_enabled_ = allocation_observer_hook_ || allocation_override_hook_; in SetOverrideHooks()
128 allocation_override_hook_.load(std::memory_order_relaxed)) { in AllocationOverrideHookIfEnabled()
Dpartition_alloc.h290 static std::atomic<AllocationOverrideHook*> allocation_override_hook_; variable