Searched refs:AllocationEvent (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/heap/ |
D | gc-tracer.h | 132 class AllocationEvent { 135 AllocationEvent() {} in AllocationEvent() function 137 AllocationEvent(double duration, intptr_t allocation_in_bytes); 242 typedef RingBuffer<AllocationEvent, kRingBufferMaxSize> AllocationEventBuffer;
|
D | gc-tracer.cc | 22 GCTracer::AllocationEvent::AllocationEvent(double duration, in AllocationEvent() function in v8::internal::GCTracer::AllocationEvent 206 allocation_events_.push_front(AllocationEvent(duration, allocation_in_bytes)); in AddNewSpaceAllocationTime()
|
D | heap-inl.h | 227 profiler->AllocationEvent(object->address(), size_in_bytes); in OnAllocationEvent()
|
/external/v8/src/ |
D | heap-profiler.cc | 155 void HeapProfiler::AllocationEvent(Address addr, int size) { in AllocationEvent() function in v8::internal::HeapProfiler 158 allocation_tracker_->AllocationEvent(addr, size); in AllocationEvent()
|
D | heap-profiler.h | 50 void AllocationEvent(Address addr, int size);
|
D | allocation-tracker.h | 103 void AllocationEvent(Address addr, int size);
|
D | allocation-tracker.cc | 224 void AllocationTracker::AllocationEvent(Address addr, int size) { in AllocationEvent() function in v8::internal::AllocationTracker
|