Searched refs:AllocationEvent (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/heap/ |
D | gc-tracer.h | 154 class AllocationEvent { 157 AllocationEvent() {} in AllocationEvent() function 159 AllocationEvent(double duration, size_t allocation_in_bytes); 314 typedef RingBuffer<AllocationEvent, kRingBufferMaxSize> AllocationEventBuffer;
|
D | gc-tracer.cc | 37 GCTracer::AllocationEvent::AllocationEvent(double duration, in AllocationEvent() function in v8::internal::GCTracer::AllocationEvent 316 new_space_allocation_events_.push_front(AllocationEvent( in AddAllocation() 319 AllocationEvent(allocation_duration_since_gc_, in AddAllocation()
|
D | heap-inl.h | 257 profiler->AllocationEvent(object->address(), size_in_bytes); in OnAllocationEvent()
|
/external/v8/src/profiler/ |
D | heap-profiler.cc | 153 void HeapProfiler::AllocationEvent(Address addr, int size) { in AllocationEvent() function in v8::internal::HeapProfiler 156 allocation_tracker_->AllocationEvent(addr, size); in AllocationEvent()
|
D | heap-profiler.h | 50 void AllocationEvent(Address addr, int size);
|
D | allocation-tracker.h | 112 void AllocationEvent(Address addr, int size);
|
D | allocation-tracker.cc | 223 void AllocationTracker::AllocationEvent(Address addr, int size) { in AllocationEvent() function in v8::internal::AllocationTracker
|