Searched refs:AllocationObserver (Results 1 – 16 of 16) sorted by relevance
/external/v8/src/heap/ |
D | allocation-observer.h | 17 class AllocationObserver; variable 26 V8_EXPORT_PRIVATE void AddAllocationObserver(AllocationObserver* observer); 27 V8_EXPORT_PRIVATE void RemoveAllocationObserver(AllocationObserver* observer); 59 AllocationObserverCounter(AllocationObserver* observer, size_t prev_counter, in AllocationObserverCounter() 65 AllocationObserver* observer_; 72 std::unordered_set<AllocationObserver*> pending_removed_; 84 class AllocationObserver { 86 explicit AllocationObserver(intptr_t step_size) : step_size_(step_size) { in AllocationObserver() function 89 virtual ~AllocationObserver() = default; 113 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
|
D | spaces.h | 35 class AllocationObserver; variable 132 virtual void AddAllocationObserver(AllocationObserver* observer); 134 virtual void RemoveAllocationObserver(AllocationObserver* observer); 504 AllocationObserver* observer) override; 506 AllocationObserver* observer) override;
|
D | spaces.cc | 241 void Space::AddAllocationObserver(AllocationObserver* observer) { in AddAllocationObserver() 245 void Space::RemoveAllocationObserver(AllocationObserver* observer) { in RemoveAllocationObserver() 340 void SpaceWithLinearArea::AddAllocationObserver(AllocationObserver* observer) { in AddAllocationObserver() 351 AllocationObserver* observer) { in RemoveAllocationObserver()
|
D | allocation-observer.cc | 13 void AllocationCounter::AddAllocationObserver(AllocationObserver* observer) { in AddAllocationObserver() 43 void AllocationCounter::RemoveAllocationObserver(AllocationObserver* observer) { in RemoveAllocationObserver()
|
D | stress-marking-observer.h | 13 class StressMarkingObserver : public AllocationObserver {
|
D | stress-marking-observer.cc | 13 : AllocationObserver(64), heap_(heap) {} in StressMarkingObserver()
|
D | stress-scavenge-observer.h | 13 class StressScavengeObserver : public AllocationObserver {
|
D | incremental-marking.h | 229 class Observer : public AllocationObserver { 232 : AllocationObserver(step_size), in Observer()
|
D | stress-scavenge-observer.cc | 17 : AllocationObserver(64), in StressScavengeObserver()
|
D | heap.h | 1443 AllocationObserver* observer, AllocationObserver* new_space_observer); 1448 AllocationObserver* observer, AllocationObserver* new_space_observer); 2116 AllocationObserver* stress_marking_observer_ = nullptr; 2208 std::unique_ptr<AllocationObserver> scavenge_task_observer_; 2209 std::unique_ptr<AllocationObserver> stress_concurrent_allocation_observer_;
|
D | free-list.h | 24 class AllocationObserver; variable
|
D | heap.cc | 180 class ScavengeTaskObserver : public AllocationObserver { 183 : AllocationObserver(step_size), heap_(heap) {} in ScavengeTaskObserver() 907 AllocationObserver* observer, AllocationObserver* new_space_observer) { in AddAllocationObserversToAllSpaces() 922 AllocationObserver* observer, AllocationObserver* new_space_observer) { in RemoveAllocationObserversFromAllSpaces() 5111 class StressConcurrentAllocationObserver : public AllocationObserver { 5114 : AllocationObserver(1024), heap_(heap) {} in StressConcurrentAllocationObserver()
|
/external/v8/src/heap/cppgc/ |
D | stats-collector.h | 33 class AllocationObserver { 60 void RegisterObserver(AllocationObserver*); 61 void UnregisterObserver(AllocationObserver*); 113 std::vector<AllocationObserver*> allocation_observers_; 126 for (AllocationObserver* observer : allocation_observers_) { in ForAllAllocationObservers()
|
D | stats-collector.cc | 18 void StatsCollector::RegisterObserver(AllocationObserver* observer) { in RegisterObserver() 25 void StatsCollector::UnregisterObserver(AllocationObserver* observer) { in UnregisterObserver() 59 ForAllAllocationObservers([this](AllocationObserver* observer) { in AllocatedObjectSizeSafepointImpl() 86 ForAllAllocationObservers([marked_bytes](AllocationObserver* observer) { in NotifyMarkingCompleted()
|
D | heap-growing.cc | 31 : public StatsCollector::AllocationObserver {
|
/external/v8/src/profiler/ |
D | sampling-heap-profiler.h | 128 class Observer : public AllocationObserver { 133 : AllocationObserver(step_size), in Observer()
|