Home
last modified time | relevance | path

Searched refs:AllocationObserver (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/profiler/
Dsampling-heap-profiler.h156 class SamplingAllocationObserver : public AllocationObserver {
161 : AllocationObserver(step_size), in SamplingAllocationObserver()
/external/v8/src/heap/
Dincremental-marking.h221 class Observer : public AllocationObserver {
224 : AllocationObserver(step_size), in Observer()
Dheap.h309 class AllocationObserver; variable
2203 AllocationObserver* idle_scavenge_observer_;
2641 class AllocationObserver {
2643 explicit AllocationObserver(intptr_t step_size) in AllocationObserver() function
2647 virtual ~AllocationObserver() {} in ~AllocationObserver()
2690 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
Dspaces.h25 class AllocationObserver; variable
1025 : allocation_observers_(new List<AllocationObserver*>()), in Space()
1043 virtual void AddAllocationObserver(AllocationObserver* observer) { in AddAllocationObserver()
1047 virtual void RemoveAllocationObserver(AllocationObserver* observer) { in RemoveAllocationObserver()
1109 v8::base::SmartPointer<List<AllocationObserver*>> allocation_observers_;
2828 void AddAllocationObserver(AllocationObserver* observer) override;
2830 void RemoveAllocationObserver(AllocationObserver* observer) override;
Dspaces.cc1073 AllocationObserver* o = (*allocation_observers_)[i]; in AllocateChunk()
1630 AllocationObserver* o = (*allocation_observers_)[i]; in AllocateChunk()
1638 void NewSpace::AddAllocationObserver(AllocationObserver* observer) { in AllocateChunk()
1643 void NewSpace::RemoveAllocationObserver(AllocationObserver* observer) { in AllocateChunk()
Dheap.cc57 class IdleScavengeObserver : public AllocationObserver {
60 : AllocationObserver(step_size), heap_(heap) {} in IdleScavengeObserver()
/external/v8/test/cctest/heap/
Dtest-spaces.cc548 class Observer : public AllocationObserver {
551 : AllocationObserver(step_size), count_(0) {} in Observer()
630 UNINITIALIZED_TEST(AllocationObserver) { in UNINITIALIZED_TEST() argument